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

Side by Side Diff: tools/gn/gn.gyp

Issue 26537002: Add a UniqueVector class to GN (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: comments Created 7 years, 2 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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 }, 4 },
5 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'gn_lib', 7 'target_name': 'gn_lib',
8 'type': 'static_library', 8 'type': 'static_library',
9 'dependencies': [ 9 'dependencies': [
10 '../../base/base.gyp:base', 10 '../../base/base.gyp:base',
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 'target_manager.cc', 132 'target_manager.cc',
133 'target_manager.h', 133 'target_manager.h',
134 'token.cc', 134 'token.cc',
135 'token.h', 135 'token.h',
136 'tokenizer.cc', 136 'tokenizer.cc',
137 'tokenizer.h', 137 'tokenizer.h',
138 'toolchain.cc', 138 'toolchain.cc',
139 'toolchain.h', 139 'toolchain.h',
140 'toolchain_manager.cc', 140 'toolchain_manager.cc',
141 'toolchain_manager.h', 141 'toolchain_manager.h',
142 'uniquify.h',
142 'trace.cc', 143 'trace.cc',
143 'trace.h', 144 'trace.h',
144 'value.cc', 145 'value.cc',
145 'value.h', 146 'value.h',
146 'value_extractors.cc', 147 'value_extractors.cc',
147 'value_extractors.h', 148 'value_extractors.h',
148 'variables.cc', 149 'variables.cc',
149 'variables.h', 150 'variables.h',
150 ], 151 ],
151 }, 152 },
(...skipping 27 matching lines...) Expand all
179 'pattern_unittest.cc', 180 'pattern_unittest.cc',
180 'scope_per_file_provider_unittest.cc', 181 'scope_per_file_provider_unittest.cc',
181 'source_dir_unittest.cc', 182 'source_dir_unittest.cc',
182 'string_utils_unittest.cc', 183 'string_utils_unittest.cc',
183 'target_generator_unittest.cc', 184 'target_generator_unittest.cc',
184 'target_manager_unittest.cc', 185 'target_manager_unittest.cc',
185 'target_unittest.cc', 186 'target_unittest.cc',
186 'test_with_scope.cc', 187 'test_with_scope.cc',
187 'test_with_scope.h', 188 'test_with_scope.h',
188 'tokenizer_unittest.cc', 189 'tokenizer_unittest.cc',
190 'uniquify_unittest.cc',
189 ], 191 ],
190 'dependencies': [ 192 'dependencies': [
191 'gn_lib', 193 'gn_lib',
192 '../../base/base.gyp:run_all_unittests', 194 '../../base/base.gyp:run_all_unittests',
193 '../../base/base.gyp:test_support_base', 195 '../../base/base.gyp:test_support_base',
194 '../../testing/gtest.gyp:gtest', 196 '../../testing/gtest.gyp:gtest',
195 ], 197 ],
196 }, 198 },
197 { 199 {
198 'target_name': 'generate_test_gn_data', 200 'target_name': 'generate_test_gn_data',
199 'type': 'executable', 201 'type': 'executable',
200 'sources': [ 202 'sources': [
201 'generate_test_gn_data.cc', 203 'generate_test_gn_data.cc',
202 ], 204 ],
203 'dependencies': [ 205 'dependencies': [
204 '../../base/base.gyp:base', 206 '../../base/base.gyp:base',
205 ], 207 ],
206 } 208 }
207 ], 209 ],
208 } 210 }
OLDNEW
« no previous file with comments | « tools/gn/BUILD.gn ('k') | tools/gn/label.h » ('j') | tools/gn/uniquify.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698