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

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

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
« no previous file with comments | « no previous file | tools/gn/gn.gyp » ('j') | tools/gn/uniquify.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 static_library("gn_lib") { 1 static_library("gn_lib") {
2 sources = [ 2 sources = [
3 "args.cc", 3 "args.cc",
4 "args.h", 4 "args.h",
5 "binary_target_generator.cc", 5 "binary_target_generator.cc",
6 "binary_target_generator.h", 6 "binary_target_generator.h",
7 "build_settings.cc", 7 "build_settings.cc",
8 "build_settings.h", 8 "build_settings.h",
9 "command_args.cc", 9 "command_args.cc",
10 "command_desc.cc", 10 "command_desc.cc",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 "token.cc", 124 "token.cc",
125 "token.h", 125 "token.h",
126 "tokenizer.cc", 126 "tokenizer.cc",
127 "tokenizer.h", 127 "tokenizer.h",
128 "toolchain.cc", 128 "toolchain.cc",
129 "toolchain.h", 129 "toolchain.h",
130 "toolchain_manager.cc", 130 "toolchain_manager.cc",
131 "toolchain_manager.h", 131 "toolchain_manager.h",
132 "trace.cc", 132 "trace.cc",
133 "trace.h", 133 "trace.h",
134 "uniquify.h",
134 "value.cc", 135 "value.cc",
135 "value.h", 136 "value.h",
136 "value_extractors.cc", 137 "value_extractors.cc",
137 "value_extractors.h", 138 "value_extractors.h",
138 "variables.cc", 139 "variables.cc",
139 "variables.h", 140 "variables.h",
140 ] 141 ]
141 deps = [ 142 deps = [
142 "//base", 143 "//base",
143 "//base/third_party/dynamic_annotations", 144 "//base/third_party/dynamic_annotations",
(...skipping 25 matching lines...) Expand all
169 "pattern_unittest.cc", 170 "pattern_unittest.cc",
170 "scope_per_file_provider_unittest.cc", 171 "scope_per_file_provider_unittest.cc",
171 "source_dir_unittest.cc", 172 "source_dir_unittest.cc",
172 "string_utils_unittest.cc", 173 "string_utils_unittest.cc",
173 "target_generator_unittest.cc", 174 "target_generator_unittest.cc",
174 "target_manager_unittest.cc", 175 "target_manager_unittest.cc",
175 "target_unittest.cc", 176 "target_unittest.cc",
176 "test_with_scope.cc", 177 "test_with_scope.cc",
177 "test_with_scope.h", 178 "test_with_scope.h",
178 "tokenizer_unittest.cc", 179 "tokenizer_unittest.cc",
180 "uniquify_unittest.cc",
179 ] 181 ]
180 deps = [ 182 deps = [
181 ":gn_lib", 183 ":gn_lib",
182 "//base:run_all_unittests", 184 "//base:run_all_unittests",
183 "//base:test_support_base", 185 "//base:test_support_base",
184 "//testing:gtest", 186 "//testing:gtest",
185 ] 187 ]
186 } 188 }
187 189
188 executable("generate_test_gn_data") { 190 executable("generate_test_gn_data") {
189 sources = [ "generate_test_gn_data.cc" ] 191 sources = [ "generate_test_gn_data.cc" ]
190 deps = [ "//base" ] 192 deps = [ "//base" ]
191 } 193 }
OLDNEW
« no previous file with comments | « no previous file | tools/gn/gn.gyp » ('j') | tools/gn/uniquify.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698