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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 == 0 || 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) { | |
343 deps += [ "//remoting/client/plugin" ] | |
344 } | |
345 } | 342 } |
346 | 343 |
347 if (is_win) { | 344 if (is_win) { |
348 # TODO(brettw) this duplicates "//chrome/common:version" which applies to | 345 # TODO(brettw) this duplicates "//chrome/common:version" which applies to |
349 # Linux. | 346 # Linux. |
350 process_version("version_header") { | 347 process_version("version_header") { |
351 # TODO(brettW) this should have more reduced visibility, but chrome/browser | 348 # TODO(brettW) this should have more reduced visibility, but chrome/browser |
352 # currently depends on this. | 349 # currently depends on this. |
353 #visibility = [ ":*" ] | 350 #visibility = [ ":*" ] |
354 | 351 |
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 rebase_path(chrome_binary, root_build_dir), | 908 rebase_path(chrome_binary, root_build_dir), |
912 rebase_path(symbol_file, root_build_dir), | 909 rebase_path(symbol_file, root_build_dir), |
913 ] | 910 ] |
914 | 911 |
915 deps = [ | 912 deps = [ |
916 ":chrome", | 913 ":chrome", |
917 dump_syms_label, | 914 dump_syms_label, |
918 ] | 915 ] |
919 } | 916 } |
920 } | 917 } |
OLD | NEW |