Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: rlz/rlz.gyp

Issue 2295963002: Remove GYP files from some smaller toplevel dirs. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ipc/ipc_nacl.gyp ('k') | sdch/sdch.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 {
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 'ios/lib/machine_id_ios.cc',
38 'lib/assert.cc',
39 'lib/assert.h',
40 'lib/crc32.h',
41 'lib/crc32_wrapper.cc',
42 'lib/crc8.h',
43 'lib/crc8.cc',
44 'lib/financial_ping.cc',
45 'lib/financial_ping.h',
46 'lib/lib_values.cc',
47 'lib/machine_id.cc',
48 'lib/machine_id.h',
49 'lib/recursive_cross_process_lock_posix.cc',
50 'lib/recursive_cross_process_lock_posix.h',
51 'lib/rlz_enums.h',
52 'lib/rlz_lib.cc',
53 'lib/rlz_lib.h',
54 'lib/rlz_lib_clear.cc',
55 'lib/lib_values.h',
56 'lib/rlz_value_store.h',
57 'lib/string_utils.cc',
58 'lib/string_utils.h',
59 'mac/lib/machine_id_mac.cc',
60 'mac/lib/rlz_value_store_mac.mm',
61 'mac/lib/rlz_value_store_mac.h',
62 'win/lib/lib_mutex.cc',
63 'win/lib/lib_mutex.h',
64 'win/lib/machine_deal.cc',
65 'win/lib/machine_deal.h',
66 'win/lib/machine_id_win.cc',
67 'win/lib/process_info.cc',
68 'win/lib/process_info.h',
69 'win/lib/registry_util.cc',
70 'win/lib/registry_util.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 '../net/net.gyp:net',
87 '../url/url.gyp:url_lib',
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 'target_conditions': [
101 # Need 'target_conditions' to override default filename_rules to include
102 # the files on iOS.
103 ['OS=="ios"', {
104 'sources/': [
105 ['include', '^mac/lib/rlz_value_store_mac\\.'],
106 ],
107 }],
108 ],
109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
110 'msvs_disabled_warnings': [ 4267, ],
111 },
112 {
113 'target_name': 'test_support_rlz',
114 'type': 'static_library',
115 'dependencies': [
116 ':rlz_lib',
117 '../base/base.gyp:base',
118 '../base/base.gyp:test_support_base',
119 '../testing/gtest.gyp:gtest',
120 ],
121 'sources': [
122 'test/rlz_test_helpers.cc',
123 'test/rlz_test_helpers.h',
124 ],
125 },
126 {
127 'target_name': 'rlz_unittests',
128 'type': 'executable',
129 'dependencies': [
130 ':rlz_lib',
131 ':test_support_rlz',
132 '../base/base.gyp:base',
133 '../testing/gmock.gyp:gmock',
134 '../testing/gtest.gyp:gtest',
135 '../third_party/zlib/zlib.gyp:zlib',
136 ],
137 'sources': [
138 'lib/crc32_unittest.cc',
139 'lib/crc8_unittest.cc',
140 'lib/financial_ping_test.cc',
141 'lib/lib_values_unittest.cc',
142 'lib/machine_id_unittest.cc',
143 'lib/rlz_lib_test.cc',
144 'lib/string_utils_unittest.cc',
145 'test/rlz_unittest_main.cc',
146 'win/lib/machine_deal_test.cc',
147 ],
148 'conditions': [
149 ['rlz_use_chrome_net==1', {
150 'dependencies': [
151 '../net/net.gyp:net_test_support',
152 ],
153 }],
154 ],
155 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
156 'msvs_disabled_warnings': [ 4267, ],
157 },
158 {
159 'target_name': 'rlz_id',
160 'type': 'executable',
161 'dependencies': [
162 ':rlz_lib',
163 ],
164 'sources': [
165 'examples/rlz_id.cc',
166 ],
167 },
168 ],
169 'conditions': [
170 ['OS=="win"', {
171 'targets': [
172 {
173 'target_name': 'rlz',
174 'type': 'shared_library',
175 'sources': [
176 'win/dll/dll_main.cc',
177 'win/dll/exports.cc',
178 ],
179 'dependencies': [
180 ':rlz_lib',
181 '../third_party/zlib/zlib.gyp:zlib',
182 ],
183 },
184 ],
185 }],
186 ],
187 }
OLDNEW
« no previous file with comments | « ipc/ipc_nacl.gyp ('k') | sdch/sdch.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698