| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |