Use remoting.storage instead of overriding chrome.storage.
[chromium-blink-merge.git] / rlz / rlz.gyp
blobb36c0827d00a6fe6ce1a5cfb89c6ec19c4642d20
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8     'variables': {
9       # Force rlz to use chrome's networking stack.
10       'force_rlz_use_chrome_net%': 1,
11     },
12     'conditions': [
13       ['force_rlz_use_chrome_net or OS!="win"', {
14         'rlz_use_chrome_net%': 1,
15       }, {
16         'rlz_use_chrome_net%': 0,
17       }],
18     ],
19   },
20   'target_defaults': {
21     'include_dirs': [
22       '..',
23     ],
24   },
25   'targets': [
26     {
27       'target_name': 'rlz_lib',
28       'type': 'static_library',
29       'dependencies': [
30         '../base/base.gyp:base',
31         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
32       ],
33       'sources': [
34         'chromeos/lib/machine_id_chromeos.cc',
35         'chromeos/lib/rlz_value_store_chromeos.cc',
36         'chromeos/lib/rlz_value_store_chromeos.h',
37         'lib/assert.cc',
38         'lib/assert.h',
39         'lib/crc32.h',
40         'lib/crc32_wrapper.cc',
41         'lib/crc8.h',
42         'lib/crc8.cc',
43         'lib/financial_ping.cc',
44         'lib/financial_ping.h',
45         'lib/lib_values.cc',
46         'lib/machine_id.cc',
47         'lib/machine_id.h',
48         'lib/recursive_cross_process_lock_posix.cc',
49         'lib/recursive_cross_process_lock_posix.h',
50         'lib/rlz_enums.h',
51         'lib/rlz_lib.cc',
52         'lib/rlz_lib.h',
53         'lib/rlz_lib_clear.cc',
54         'lib/lib_values.h',
55         'lib/rlz_value_store.h',
56         'lib/string_utils.cc',
57         'lib/string_utils.h',
58         'mac/lib/machine_id_mac.cc',
59         'mac/lib/rlz_value_store_mac.mm',
60         'mac/lib/rlz_value_store_mac.h',
61         'win/lib/lib_mutex.cc',
62         'win/lib/lib_mutex.h',
63         'win/lib/machine_deal.cc',
64         'win/lib/machine_deal.h',
65         'win/lib/machine_id_win.cc',
66         'win/lib/process_info.cc',
67         'win/lib/process_info.h',
68         'win/lib/registry_util.cc',
69         'win/lib/registry_util.h',
70         'win/lib/rlz_lib.h',
71         'win/lib/rlz_lib_win.cc',
72         'win/lib/rlz_value_store_registry.cc',
73         'win/lib/rlz_value_store_registry.h',
74       ],
75       'conditions': [
76         ['rlz_use_chrome_net==1', {
77           'defines': [
78             'RLZ_NETWORK_IMPLEMENTATION_CHROME_NET',
79           ],
80           'direct_dependent_settings': {
81             'defines': [
82               'RLZ_NETWORK_IMPLEMENTATION_CHROME_NET',
83             ],
84           },
85           'dependencies': [
86             '../build/temp_gyp/googleurl.gyp:googleurl',
87             '../net/net.gyp:net',
88           ],
89         }, {
90           'defines': [
91             'RLZ_NETWORK_IMPLEMENTATION_WIN_INET',
92           ],
93           'direct_dependent_settings': {
94             'defines': [
95               'RLZ_NETWORK_IMPLEMENTATION_WIN_INET',
96             ],
97           },
98         }],
99       ],
100       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
101       'msvs_disabled_warnings': [ 4267, ],
102     },
103     {
104       'target_name': 'rlz_unittests',
105       'type': 'executable',
106       'dependencies': [
107         ':rlz_lib',
108         '../base/base.gyp:base',
109         '../base/base.gyp:base_prefs',
110         '../testing/gmock.gyp:gmock',
111         '../testing/gtest.gyp:gtest',
112         '../third_party/zlib/zlib.gyp:zlib',
113       ],
114       'sources': [
115         'lib/crc32_unittest.cc',
116         'lib/crc8_unittest.cc',
117         'lib/financial_ping_test.cc',
118         'lib/lib_values_unittest.cc',
119         'lib/machine_id_unittest.cc',
120         'lib/rlz_lib_test.cc',
121         'lib/string_utils_unittest.cc',
122         'test/rlz_test_helpers.cc',
123         'test/rlz_test_helpers.h',
124         'test/rlz_unittest_main.cc',
125         'win/lib/machine_deal_test.cc',
126       ],
127       'conditions': [
128         ['rlz_use_chrome_net==1', {
129           'dependencies': [
130             '../net/net.gyp:net_test_support',
131           ],
132         }],
133       ],
134       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
135       'msvs_disabled_warnings': [ 4267, ],
136     },
137     {
138       'target_name': 'rlz_id',
139       'type': 'executable',
140       'dependencies': [
141         ':rlz_lib',
142       ],
143       'sources': [
144         'examples/rlz_id.cc',
145       ],
146     },
147   ],
148   'conditions': [
149     ['OS=="win"', {
150       'targets': [
151         {
152           'target_name': 'rlz',
153           'type': 'shared_library',
154           'sources': [
155             'win/dll/dll_main.cc',
156             'win/dll/exports.cc',
157           ],
158           'dependencies': [
159             ':rlz_lib',
160             '../third_party/zlib/zlib.gyp:zlib',
161           ],
162         },
163       ],
164     }],
165   ],