summaryrefslogtreecommitdiffstats
path: root/components/wifi.gypi
blob: 3d712152cefc6f4b309fe21330694dfcb9323f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'wifi_component',
      'type': '<(component)',
      'dependencies': [
        '../base/base.gyp:base',
        '../crypto/crypto.gyp:crypto',
        '../third_party/libxml/libxml.gyp:libxml',
        'onc_component',
      ],
      'include_dirs': [
        '..',
      ],
      'defines': [
        'WIFI_IMPLEMENTATION',
      ],
      'sources': [
        'wifi/network_properties.cc',
        'wifi/network_properties.h',
        'wifi/wifi_export.h',
        'wifi/wifi_service.cc',
        'wifi/wifi_service.h',
        'wifi/wifi_service_mac.mm',
        'wifi/wifi_service_win.cc',
      ],
      'conditions': [
        ['OS == "win"', {
          'link_settings': {
            'libraries': [
              '-liphlpapi.lib',
            ],
          },
        }],
        ['OS == "mac"', {
          'link_settings': {
            'libraries': [
              '$(SDKROOT)/System/Library/Frameworks/CoreWLAN.framework',
              '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framework',
            ]
          },
        }],
      ],
    },
    {
      'target_name': 'wifi_test_support',
      'type': 'static_library',
      'dependencies': [
        '../base/base.gyp:base',
        'onc_component',
        'wifi_component',
      ],
      'include_dirs': [
        '..',
      ],
      'sources': [
        'wifi/fake_wifi_service.cc',
        'wifi/fake_wifi_service.h',
      ],
    },
    {
      'target_name': 'wifi_test',
      'type': 'executable',
      'dependencies': [
        '../base/base.gyp:base',
        'onc_component',
        'wifi_component',
      ],
      'include_dirs': [
        '..',
      ],
      'sources': [
        'wifi/wifi_test.cc',
      ],
    },
  ],
}