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

Side by Side Diff: rlz/rlz.gyp

Issue 11308196: [cros] RlzValueStore made protected by a cross-process lock and not persisted over browser lifetime… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years 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/mac/lib/rlz_value_store_mac.mm ('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 27 matching lines...) Expand all
38 'lib/assert.h', 38 'lib/assert.h',
39 'lib/crc32.h', 39 'lib/crc32.h',
40 'lib/crc32_wrapper.cc', 40 'lib/crc32_wrapper.cc',
41 'lib/crc8.h', 41 'lib/crc8.h',
42 'lib/crc8.cc', 42 'lib/crc8.cc',
43 'lib/financial_ping.cc', 43 'lib/financial_ping.cc',
44 'lib/financial_ping.h', 44 'lib/financial_ping.h',
45 'lib/lib_values.cc', 45 'lib/lib_values.cc',
46 'lib/machine_id.cc', 46 'lib/machine_id.cc',
47 'lib/machine_id.h', 47 'lib/machine_id.h',
48 'lib/recursive_lock.cc', 48 'lib/recursive_cross_process_lock_posix.cc',
49 'lib/recursive_lock.h', 49 'lib/recursive_cross_process_lock_posix.h',
50 'lib/rlz_enums.h', 50 'lib/rlz_enums.h',
51 'lib/rlz_lib.cc', 51 'lib/rlz_lib.cc',
52 'lib/rlz_lib.h', 52 'lib/rlz_lib.h',
53 'lib/rlz_lib_clear.cc', 53 'lib/rlz_lib_clear.cc',
54 'lib/lib_values.h', 54 'lib/lib_values.h',
55 'lib/rlz_value_store.h', 55 'lib/rlz_value_store.h',
56 'lib/string_utils.cc', 56 'lib/string_utils.cc',
57 'lib/string_utils.h', 57 'lib/string_utils.h',
58 'mac/lib/machine_id_mac.cc', 58 'mac/lib/machine_id_mac.cc',
59 'mac/lib/rlz_value_store_mac.mm', 59 'mac/lib/rlz_value_store_mac.mm',
(...skipping 30 matching lines...) Expand all
90 }, { 90 }, {
91 'defines': [ 91 'defines': [
92 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET', 92 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET',
93 ], 93 ],
94 'direct_dependent_settings': { 94 'direct_dependent_settings': {
95 'defines': [ 95 'defines': [
96 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET', 96 'RLZ_NETWORK_IMPLEMENTATION_WIN_INET',
97 ], 97 ],
98 }, 98 },
99 }], 99 }],
100 ['chromeos==0', {
101 'sources!': [
102 'lib/recursive_lock.cc',
103 'lib/recursive_lock.h',
104 ]
105 }],
106 ], 100 ],
107 }, 101 },
108 { 102 {
109 'target_name': 'rlz_unittests', 103 'target_name': 'rlz_unittests',
110 'type': 'executable', 104 'type': 'executable',
111 'dependencies': [ 105 'dependencies': [
112 ':rlz_lib', 106 ':rlz_lib',
113 '../base/base.gyp:base', 107 '../base/base.gyp:base',
114 '../base/base.gyp:base_prefs', 108 '../base/base.gyp:base_prefs',
115 '../testing/gmock.gyp:gmock', 109 '../testing/gmock.gyp:gmock',
116 '../testing/gtest.gyp:gtest', 110 '../testing/gtest.gyp:gtest',
117 '../third_party/zlib/zlib.gyp:zlib', 111 '../third_party/zlib/zlib.gyp:zlib',
118 ], 112 ],
119 'sources': [ 113 'sources': [
120 'lib/crc32_unittest.cc', 114 'lib/crc32_unittest.cc',
121 'lib/crc8_unittest.cc', 115 'lib/crc8_unittest.cc',
122 'lib/financial_ping_test.cc', 116 'lib/financial_ping_test.cc',
123 'lib/lib_values_unittest.cc', 117 'lib/lib_values_unittest.cc',
124 'lib/machine_id_unittest.cc', 118 'lib/machine_id_unittest.cc',
125 'lib/recursive_lock_unittest.cc',
126 'lib/rlz_lib_test.cc', 119 'lib/rlz_lib_test.cc',
127 'lib/string_utils_unittest.cc', 120 'lib/string_utils_unittest.cc',
128 'test/rlz_test_helpers.cc', 121 'test/rlz_test_helpers.cc',
129 'test/rlz_test_helpers.h', 122 'test/rlz_test_helpers.h',
130 'test/rlz_unittest_main.cc', 123 'test/rlz_unittest_main.cc',
131 'win/lib/machine_deal_test.cc', 124 'win/lib/machine_deal_test.cc',
132 ], 125 ],
133 'conditions': [ 126 'conditions': [
134 ['rlz_use_chrome_net==1', { 127 ['rlz_use_chrome_net==1', {
135 'dependencies': [ 128 'dependencies': [
136 '../net/net.gyp:net_test_support', 129 '../net/net.gyp:net_test_support',
137 ], 130 ],
138 }], 131 }],
139 ['chromeos==0', {
140 'sources!': [
141 'lib/recursive_lock_unittest.cc',
142 ],
143 }]
144 ], 132 ],
145 }, 133 },
146 { 134 {
147 'target_name': 'rlz_id', 135 'target_name': 'rlz_id',
148 'type': 'executable', 136 'type': 'executable',
149 'dependencies': [ 137 'dependencies': [
150 ':rlz_lib', 138 ':rlz_lib',
151 ], 139 ],
152 'sources': [ 140 'sources': [
153 'examples/rlz_id.cc', 141 'examples/rlz_id.cc',
(...skipping 12 matching lines...) Expand all
166 ], 154 ],
167 'dependencies': [ 155 'dependencies': [
168 ':rlz_lib', 156 ':rlz_lib',
169 '../third_party/zlib/zlib.gyp:zlib', 157 '../third_party/zlib/zlib.gyp:zlib',
170 ], 158 ],
171 }, 159 },
172 ], 160 ],
173 }], 161 }],
174 ], 162 ],
175 } 163 }
OLDNEW
« no previous file with comments | « rlz/mac/lib/rlz_value_store_mac.mm ('k') | rlz/test/rlz_test_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698