| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/compiler/pgo/pgo.gni") | 7 import("//build/config/compiler/pgo/pgo.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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 ":chrome_initial", | 66 ":chrome_initial", |
| 67 ] | 67 ] |
| 68 } | 68 } |
| 69 } | 69 } |
| 70 | 70 |
| 71 # Dependencies which must accompany ChromeMainDelegate when embedded | 71 # Dependencies which must accompany ChromeMainDelegate when embedded |
| 72 # Mash services are enabled. | 72 # Mash services are enabled. |
| 73 if (enable_package_mash_services) { | 73 if (enable_package_mash_services) { |
| 74 embedded_mash_service_deps = [ | 74 embedded_mash_service_deps = [ |
| 75 "//chrome/app/mash:chrome_mash_catalog", | 75 "//chrome/app/mash:chrome_mash_catalog", |
| 76 "//chrome/app/mash:chrome_test_catalog", |
| 76 "//chrome/app/mash:embedded_services", | 77 "//chrome/app/mash:embedded_services", |
| 77 "//mash/common", | 78 "//mash/common", |
| 78 "//mash/quick_launch/public/interfaces:constants", | 79 "//mash/quick_launch/public/interfaces:constants", |
| 79 "//services/ui/public/interfaces:constants", | 80 "//services/ui/public/interfaces:constants", |
| 80 ] | 81 ] |
| 81 | 82 |
| 82 if (is_chromeos) { | 83 if (is_chromeos) { |
| 83 embedded_mash_service_deps += [ "//chrome/app/mash:chrome_mus_catalog" ] | 84 embedded_mash_service_deps += [ "//chrome/app/mash:chrome_mus_catalog" ] |
| 84 } | 85 } |
| 85 } | 86 } |
| (...skipping 1683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1769 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1770 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
| 1770 "//chrome/tools/build/linux/chrome-wrapper", | 1771 "//chrome/tools/build/linux/chrome-wrapper", |
| 1771 "//third_party/xdg-utils/scripts/xdg-mime", | 1772 "//third_party/xdg-utils/scripts/xdg-mime", |
| 1772 "//third_party/xdg-utils/scripts/xdg-settings", | 1773 "//third_party/xdg-utils/scripts/xdg-settings", |
| 1773 ] | 1774 ] |
| 1774 outputs = [ | 1775 outputs = [ |
| 1775 "$root_out_dir/{{source_file_part}}", | 1776 "$root_out_dir/{{source_file_part}}", |
| 1776 ] | 1777 ] |
| 1777 } | 1778 } |
| 1778 } | 1779 } |
| OLD | NEW |