| 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/battor_agent", | 151 "//tools/battor_agent", |
| 152 "//tools/battor_agent:battor_agent_unittests", |
| 152 "//tools/gn", | 153 "//tools/gn", |
| 153 "//tools/gn:gn_unittests", | 154 "//tools/gn:gn_unittests", |
| 154 "//tools/perf/clear_system_cache", | 155 "//tools/perf/clear_system_cache", |
| 155 "//ui/accessibility:accessibility_unittests", | 156 "//ui/accessibility:accessibility_unittests", |
| 156 "//ui/app_list:app_list_unittests", | 157 "//ui/app_list:app_list_unittests", |
| 157 ] | 158 ] |
| 158 } | 159 } |
| 159 | 160 |
| 160 if (!is_ios) { | 161 if (!is_ios) { |
| 161 # TODO(GYP): Figure out which of these should actually build on iOS, | 162 # TODO(GYP): Figure out which of these should actually build on iOS, |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 ] | 891 ] |
| 891 | 892 |
| 892 if (target_cpu == "x86") { | 893 if (target_cpu == "x86") { |
| 893 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] | 894 deps += [ "//chrome/tools/crash_service:crash_service_win64" ] |
| 894 } | 895 } |
| 895 } else { | 896 } else { |
| 896 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 897 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 897 } | 898 } |
| 898 } | 899 } |
| 899 } | 900 } |
| OLD | NEW |