| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
| 10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
| (...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 public_deps += [ "//chrome/service" ] | 721 public_deps += [ "//chrome/service" ] |
| 722 } | 722 } |
| 723 } | 723 } |
| 724 | 724 |
| 725 if (!is_component_build) { | 725 if (!is_component_build) { |
| 726 assert_no_deps = [ | 726 assert_no_deps = [ |
| 727 # Blink and V8 should not be used in the browser process. In component | 727 # Blink and V8 should not be used in the browser process. In component |
| 728 # build this is OK because all of content is linked into one library. | 728 # build this is OK because all of content is linked into one library. |
| 729 # Note that the blink_headers target is OK, so we can't do a wildcard for | 729 # Note that the blink_headers target is OK, so we can't do a wildcard for |
| 730 # all blink targets. | 730 # all blink targets. |
| 731 # TODO(brettw) bug 582206: Blink should not be linked into the browser | 731 "//third_party/WebKit/public:blink", |
| 732 # process, and then we can enable this. | |
| 733 #"//third_party/WebKit/public:blink", | |
| 734 # TODO(brettw) bug 581766: V8 should not be linked into the browser | 732 # TODO(brettw) bug 581766: V8 should not be linked into the browser |
| 735 # process, and then we can enable this. | 733 # process, and then we can enable this. |
| 736 #"//v8/*", | 734 #"//v8/*", |
| 737 ] | 735 ] |
| 738 } | 736 } |
| 739 } | 737 } |
| 740 | 738 |
| 741 # GYP version: chromium_child_dependencies variable in chrome.gyp | 739 # GYP version: chromium_child_dependencies variable in chrome.gyp |
| 742 group("child_dependencies") { | 740 group("child_dependencies") { |
| 743 public_deps = [ | 741 public_deps = [ |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1349 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1347 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1350 "//chrome/tools/build/linux/chrome-wrapper", | 1348 "//chrome/tools/build/linux/chrome-wrapper", |
| 1351 "//third_party/xdg-utils/scripts/xdg-mime", | 1349 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1352 "//third_party/xdg-utils/scripts/xdg-settings", | 1350 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1353 ] | 1351 ] |
| 1354 outputs = [ | 1352 outputs = [ |
| 1355 "$root_out_dir/{{source_file_part}}", | 1353 "$root_out_dir/{{source_file_part}}", |
| 1356 ] | 1354 ] |
| 1357 } | 1355 } |
| 1358 } | 1356 } |
| OLD | NEW |