| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 | 211 |
| 212 if (enable_configuration_policy) { | 212 if (enable_configuration_policy) { |
| 213 deps += [ "//components/policy:policy_templates" ] | 213 deps += [ "//components/policy:policy_templates" ] |
| 214 } | 214 } |
| 215 | 215 |
| 216 if (v8_use_external_startup_data) { | 216 if (v8_use_external_startup_data) { |
| 217 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] | 217 deps += [ "//gin:gin_v8_snapshot_fingerprint" ] |
| 218 } | 218 } |
| 219 | 219 |
| 220 if (is_win) { | 220 if (is_win) { |
| 221 deps += [ "//chrome/tools/build/win/syzygy:chrome_dll_syzygy" ] | 221 deps += [ |
| 222 "//chrome/installer/gcapi", |
| 223 "//chrome/tools/build/win/syzygy:chrome_dll_syzygy", |
| 224 ] |
| 222 } | 225 } |
| 223 | 226 |
| 224 if (is_android) { | 227 if (is_android) { |
| 225 deps += [ | 228 deps += [ |
| 226 "//base/android/linker:chromium_android_linker", | 229 "//base/android/linker:chromium_android_linker", |
| 227 "//build/android/gyp/test:hello_world", | 230 "//build/android/gyp/test:hello_world", |
| 228 "//build/android/rezip", | 231 "//build/android/rezip", |
| 229 "//third_party/errorprone:chromium_errorprone", | 232 "//third_party/errorprone:chromium_errorprone", |
| 230 "//tools/android:android_tools", | 233 "//tools/android:android_tools", |
| 231 "//tools/android/heap_profiler:heap_profiler_unittests", | 234 "//tools/android/heap_profiler:heap_profiler_unittests", |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1009 if (target_cpu == "x86") { | 1012 if (target_cpu == "x86") { |
| 1010 deps += [ | 1013 deps += [ |
| 1011 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 1014 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 1012 ] | 1015 ] |
| 1013 } | 1016 } |
| 1014 } else { | 1017 } else { |
| 1015 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 1018 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 1016 } | 1019 } |
| 1017 } | 1020 } |
| 1018 } | 1021 } |
| OLD | NEW |