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

Side by Side Diff: BUILD.gn

Issue 1534823002: tools/gn: delete generate_test_gn_data tool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gyp build Created 4 years, 11 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 | build/gn_migration.gypi » ('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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "//ppapi/examples/url_loader", 142 "//ppapi/examples/url_loader",
143 "//ppapi/examples/video_capture", 143 "//ppapi/examples/video_capture",
144 "//ppapi/examples/video_decode", 144 "//ppapi/examples/video_decode",
145 "//ppapi/examples/video_effects", 145 "//ppapi/examples/video_effects",
146 "//ppapi/examples/video_encode", 146 "//ppapi/examples/video_encode",
147 "//printing:printing_unittests", 147 "//printing:printing_unittests",
148 "//third_party/cacheinvalidation:cacheinvalidation_unittests", 148 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
149 "//third_party/codesighs", 149 "//third_party/codesighs",
150 "//third_party/pdfium/samples:pdfium_test", 150 "//third_party/pdfium/samples:pdfium_test",
151 "//tools/gn", 151 "//tools/gn",
152 "//tools/gn:generate_test_gn_data",
153 "//tools/gn:gn_unittests", 152 "//tools/gn:gn_unittests",
154 "//tools/perf/clear_system_cache", 153 "//tools/perf/clear_system_cache",
155 "//ui/accessibility:accessibility_unittests", 154 "//ui/accessibility:accessibility_unittests",
156 "//ui/app_list:app_list_unittests", 155 "//ui/app_list:app_list_unittests",
157 ] 156 ]
158 } 157 }
159 158
160 if (!is_ios) { 159 if (!is_ios) {
161 # TODO(GYP): Figure out which of these should actually build on iOS, 160 # TODO(GYP): Figure out which of these should actually build on iOS,
162 # and whether there should be other targets that are iOS-only and missing. 161 # and whether there should be other targets that are iOS-only and missing.
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 ] 874 ]
876 875
877 if (target_cpu == "x86") { 876 if (target_cpu == "x86") {
878 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] 877 deps += [ "//chrome/tools/crash_service:crash_service_win64" ]
879 } 878 }
880 } else { 879 } else {
881 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 880 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
882 } 881 }
883 } 882 }
884 } 883 }
OLDNEW
« no previous file with comments | « no previous file | build/gn_migration.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698