| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 public_deps = [ | 94 public_deps = [ |
| 95 ":chrome_initial", | 95 ":chrome_initial", |
| 96 ] | 96 ] |
| 97 data_deps = [ | 97 data_deps = [ |
| 98 ":chrome_initial", | 98 ":chrome_initial", |
| 99 ] | 99 ] |
| 100 if (is_win) { | 100 if (is_win) { |
| 101 public_deps += [ ":reorder_imports" ] | 101 public_deps += [ ":reorder_imports" ] |
| 102 } | 102 } |
| 103 if (use_aura && (is_win || is_linux)) { | 103 if (use_aura && (is_win || is_linux)) { |
| 104 data_deps += [ "//chrome/app:mojo_manifests" ] | 104 data_deps += [ "//chrome/app:service_manifests" ] |
| 105 } | 105 } |
| 106 } | 106 } |
| 107 | 107 |
| 108 executable("chrome_initial") { | 108 executable("chrome_initial") { |
| 109 if (is_win) { | 109 if (is_win) { |
| 110 output_name = "initialexe/chrome" | 110 output_name = "initialexe/chrome" |
| 111 } else { | 111 } else { |
| 112 output_name = "chrome" | 112 output_name = "chrome" |
| 113 } | 113 } |
| 114 | 114 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 | 240 |
| 241 if (use_x11) { | 241 if (use_x11) { |
| 242 configs += [ | 242 configs += [ |
| 243 "//build/config/linux:x11", | 243 "//build/config/linux:x11", |
| 244 "//build/config/linux:xext", | 244 "//build/config/linux:xext", |
| 245 ] | 245 ] |
| 246 } | 246 } |
| 247 | 247 |
| 248 if (enable_package_mash_services) { | 248 if (enable_package_mash_services) { |
| 249 deps += [ "//chrome/app/mash" ] | 249 deps += [ "//chrome/app/mash" ] |
| 250 data_deps += [ "//chrome/app:mojo_manifests" ] | 250 data_deps += [ "//chrome/app:service_manifests" ] |
| 251 } | 251 } |
| 252 } | 252 } |
| 253 | 253 |
| 254 # These files are used by the installer so we need a public dep. | 254 # These files are used by the installer so we need a public dep. |
| 255 public_deps += [ ":packed_resources" ] | 255 public_deps += [ ":packed_resources" ] |
| 256 | 256 |
| 257 # Only ChromeOS has precompiled Flash that needs to get copied to the output | 257 # Only ChromeOS has precompiled Flash that needs to get copied to the output |
| 258 # directory. On other platforms, Flash is either component-updated only or | 258 # directory. On other platforms, Flash is either component-updated only or |
| 259 # not supported at all. | 259 # not supported at all. |
| 260 if (is_chromeos) { | 260 if (is_chromeos) { |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1545 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1545 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1546 "//chrome/tools/build/linux/chrome-wrapper", | 1546 "//chrome/tools/build/linux/chrome-wrapper", |
| 1547 "//third_party/xdg-utils/scripts/xdg-mime", | 1547 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1548 "//third_party/xdg-utils/scripts/xdg-settings", | 1548 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1549 ] | 1549 ] |
| 1550 outputs = [ | 1550 outputs = [ |
| 1551 "$root_out_dir/{{source_file_part}}", | 1551 "$root_out_dir/{{source_file_part}}", |
| 1552 ] | 1552 ] |
| 1553 } | 1553 } |
| 1554 } | 1554 } |
| OLD | NEW |