| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//chrome/chrome_repack_locales.gni") | 10 import("//chrome/chrome_repack_locales.gni") |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 if (is_multi_dll_chrome) { | 220 if (is_multi_dll_chrome) { |
| 221 defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ] | 221 defines += [ "CHROME_MULTIPLE_DLL_BROWSER" ] |
| 222 deps += [ "//content/public/app:browser" ] | 222 deps += [ "//content/public/app:browser" ] |
| 223 } else { | 223 } else { |
| 224 deps += [ | 224 deps += [ |
| 225 ":child_dependencies", | 225 ":child_dependencies", |
| 226 "//content/public/app:both", | 226 "//content/public/app:both", |
| 227 ] | 227 ] |
| 228 } | 228 } |
| 229 | 229 |
| 230 if (cld_version == 0 || cld_version == 2) { | 230 if (cld_version == 2) { |
| 231 deps += [ "//third_party/cld_2" ] | 231 deps += [ "//third_party/cld_2" ] |
| 232 } | 232 } |
| 233 | 233 |
| 234 if (is_mac) { | 234 if (is_mac) { |
| 235 #['OS=="mac" and component!="shared_library"', { TODO(GYP) | 235 #['OS=="mac" and component!="shared_library"', { TODO(GYP) |
| 236 # 'includes': [ 'chrome_dll_bundle.gypi' ], | 236 # 'includes': [ 'chrome_dll_bundle.gypi' ], |
| 237 #}], | 237 #}], |
| 238 # TODO(GYP) Lots of other stuff in the OS=="mac" block. | 238 # TODO(GYP) Lots of other stuff in the OS=="mac" block. |
| 239 } | 239 } |
| 240 | 240 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 deps += [ | 325 deps += [ |
| 326 "//chrome/browser/devtools", | 326 "//chrome/browser/devtools", |
| 327 "//chrome/child", | 327 "//chrome/child", |
| 328 "//chrome/plugin", | 328 "//chrome/plugin", |
| 329 "//chrome/renderer", | 329 "//chrome/renderer", |
| 330 "//chrome/utility", | 330 "//chrome/utility", |
| 331 "//content/public/child", | 331 "//content/public/child", |
| 332 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 332 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
| 333 ] | 333 ] |
| 334 } | 334 } |
| 335 if (cld_version == 0 || cld_version == 2) { | 335 if (cld_version == 2) { |
| 336 deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 336 deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
| 337 } | 337 } |
| 338 | 338 |
| 339 if (enable_nacl) { | 339 if (enable_nacl) { |
| 340 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ] | 340 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ] |
| 341 } | 341 } |
| 342 if (enable_remoting) { | 342 if (enable_remoting) { |
| 343 deps += [ "//remoting/client/plugin" ] | 343 deps += [ "//remoting/client/plugin" ] |
| 344 } | 344 } |
| 345 } | 345 } |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 rebase_path(chrome_binary, root_build_dir), | 911 rebase_path(chrome_binary, root_build_dir), |
| 912 rebase_path(symbol_file, root_build_dir), | 912 rebase_path(symbol_file, root_build_dir), |
| 913 ] | 913 ] |
| 914 | 914 |
| 915 deps = [ | 915 deps = [ |
| 916 ":chrome", | 916 ":chrome", |
| 917 dump_syms_label, | 917 dump_syms_label, |
| 918 ] | 918 ] |
| 919 } | 919 } |
| 920 } | 920 } |
| OLD | NEW |