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/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1584 "//ui/gl", | 1584 "//ui/gl", |
1585 "//ui/gl:gl_features", | 1585 "//ui/gl:gl_features", |
1586 "//ui/message_center", | 1586 "//ui/message_center", |
1587 "//ui/resources", | 1587 "//ui/resources", |
1588 "//ui/shell_dialogs", | 1588 "//ui/shell_dialogs", |
1589 "//ui/strings", | 1589 "//ui/strings", |
1590 "//ui/surface", | 1590 "//ui/surface", |
1591 "//ui/web_dialogs", | 1591 "//ui/web_dialogs", |
1592 "//v8", | 1592 "//v8", |
1593 ] | 1593 ] |
1594 data_deps = [ | |
1595 ":preferences_manifest", | |
1596 ] | |
1597 | 1594 |
1598 if (is_chromeos && use_cras) { | 1595 if (is_chromeos && use_cras) { |
1599 defines += [ "USE_CRAS" ] | 1596 defines += [ "USE_CRAS" ] |
1600 } | 1597 } |
1601 | 1598 |
1602 if (toolkit_views) { | 1599 if (toolkit_views) { |
1603 deps += [ "//ui/views" ] | 1600 deps += [ "//ui/views" ] |
1604 } | 1601 } |
1605 | 1602 |
1606 if (is_win || is_mac) { | 1603 if (is_win || is_mac) { |
(...skipping 2522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4129 rebase_path(additional_modules_list_file, root_build_dir), | 4126 rebase_path(additional_modules_list_file, root_build_dir), |
4130 "-E", | 4127 "-E", |
4131 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 4128 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
4132 ] | 4129 ] |
4133 | 4130 |
4134 deps = [ | 4131 deps = [ |
4135 ":chrome_internal_resources_gen", | 4132 ":chrome_internal_resources_gen", |
4136 | 4133 |
4137 # Depend only on the generated mojo bindings since we read the .mojom.js | 4134 # Depend only on the generated mojo bindings since we read the .mojom.js |
4138 # file, rather than the whole mojo target which will link the C++ bindings. | 4135 # file, rather than the whole mojo target which will link the C++ bindings. |
4139 "//chrome/app:chrome_content_browser_manifest_overlay", | 4136 "//chrome/app:chrome_content_manifest_overlays", |
4140 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", | 4137 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", |
4141 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", | 4138 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", |
4142 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", | 4139 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", |
4143 "//device/bluetooth/public/interfaces:experimental_interfaces__generator", | 4140 "//device/bluetooth/public/interfaces:experimental_interfaces__generator", |
4144 "//device/bluetooth/public/interfaces:interfaces__generator", | 4141 "//device/bluetooth/public/interfaces:interfaces__generator", |
4145 "//url/mojo:url_mojom_gurl__generator", | 4142 "//url/mojo:url_mojom_gurl__generator", |
4146 "//url/mojo:url_mojom_origin__generator", | 4143 "//url/mojo:url_mojom_origin__generator", |
4147 ] | 4144 ] |
4148 | 4145 |
4149 if (safe_browsing_mode > 0) { | 4146 if (safe_browsing_mode > 0) { |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4487 "media/pepper_cdm_test_constants.cc", | 4484 "media/pepper_cdm_test_constants.cc", |
4488 "media/pepper_cdm_test_constants.h", | 4485 "media/pepper_cdm_test_constants.h", |
4489 ] | 4486 ] |
4490 } | 4487 } |
4491 } | 4488 } |
4492 | 4489 |
4493 service_manifest("preferences_manifest") { | 4490 service_manifest("preferences_manifest") { |
4494 name = "preferences" | 4491 name = "preferences" |
4495 source = "prefs/preferences_manifest.json" | 4492 source = "prefs/preferences_manifest.json" |
4496 } | 4493 } |
OLD | NEW |