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

Side by Side Diff: rlz/rlz.gyp

Issue 11365107: [cros] RlzValueStore implementation for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert to Chrome-only Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « rlz/lib/rlz_value_store.h ('k') | rlz/test/rlz_test_helpers.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'variables': { 8 'variables': {
9 # Force rlz to use chrome's networking stack. 9 # Force rlz to use chrome's networking stack.
10 'force_rlz_use_chrome_net%': 1, 10 'force_rlz_use_chrome_net%': 1,
(...skipping 13 matching lines...) Expand all
24 }, 24 },
25 'targets': [ 25 'targets': [
26 { 26 {
27 'target_name': 'rlz_lib', 27 'target_name': 'rlz_lib',
28 'type': 'static_library', 28 'type': 'static_library',
29 'dependencies': [ 29 'dependencies': [
30 '../base/base.gyp:base', 30 '../base/base.gyp:base',
31 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 31 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
32 ], 32 ],
33 'sources': [ 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',
34 'lib/assert.cc', 37 'lib/assert.cc',
35 'lib/assert.h', 38 'lib/assert.h',
36 'lib/crc32.h', 39 'lib/crc32.h',
37 'lib/crc32_wrapper.cc', 40 'lib/crc32_wrapper.cc',
38 'lib/crc8.h', 41 'lib/crc8.h',
39 'lib/crc8.cc', 42 'lib/crc8.cc',
40 'lib/financial_ping.cc', 43 'lib/financial_ping.cc',
41 'lib/financial_ping.h', 44 'lib/financial_ping.h',
42 'lib/lib_values.cc', 45 'lib/lib_values.cc',
43 'lib/machine_id.cc', 46 'lib/machine_id.cc',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 ] 104 ]
102 }], 105 }],
103 ], 106 ],
104 }, 107 },
105 { 108 {
106 'target_name': 'rlz_unittests', 109 'target_name': 'rlz_unittests',
107 'type': 'executable', 110 'type': 'executable',
108 'dependencies': [ 111 'dependencies': [
109 ':rlz_lib', 112 ':rlz_lib',
110 '../base/base.gyp:base', 113 '../base/base.gyp:base',
114 '../base/base.gyp:base_prefs',
111 '../testing/gmock.gyp:gmock', 115 '../testing/gmock.gyp:gmock',
112 '../testing/gtest.gyp:gtest', 116 '../testing/gtest.gyp:gtest',
113 '../third_party/zlib/zlib.gyp:zlib', 117 '../third_party/zlib/zlib.gyp:zlib',
114 ], 118 ],
115 'sources': [ 119 'sources': [
116 'lib/crc32_unittest.cc', 120 'lib/crc32_unittest.cc',
117 'lib/crc8_unittest.cc', 121 'lib/crc8_unittest.cc',
118 'lib/financial_ping_test.cc', 122 'lib/financial_ping_test.cc',
119 'lib/lib_values_unittest.cc', 123 'lib/lib_values_unittest.cc',
120 'lib/machine_id_unittest.cc', 124 'lib/machine_id_unittest.cc',
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 ], 166 ],
163 'dependencies': [ 167 'dependencies': [
164 ':rlz_lib', 168 ':rlz_lib',
165 '../third_party/zlib/zlib.gyp:zlib', 169 '../third_party/zlib/zlib.gyp:zlib',
166 ], 170 ],
167 }, 171 },
168 ], 172 ],
169 }], 173 }],
170 ], 174 ],
171 } 175 }
OLDNEW
« no previous file with comments | « rlz/lib/rlz_value_store.h ('k') | rlz/test/rlz_test_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698