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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
951 if (!enable_autofill_dialog || is_android || is_ios) { | 951 if (!enable_autofill_dialog || is_android || is_ios) { |
952 sources -= [ | 952 sources -= [ |
953 "autofill/validation_rules_storage_factory.cc", | 953 "autofill/validation_rules_storage_factory.cc", |
954 "autofill/validation_rules_storage_factory.h", | 954 "autofill/validation_rules_storage_factory.h", |
955 ] | 955 ] |
956 } | 956 } |
957 if (enable_media_router) { | 957 if (enable_media_router) { |
958 deps += [ "//chrome/browser/media/router" ] | 958 deps += [ "//chrome/browser/media/router" ] |
959 } | 959 } |
960 | 960 |
961 if (enable_mojo_media != "none") { | 961 if (enable_mojo_media == "browser") { |
962 deps += [ "//media/mojo/services:default_application" ] | 962 deps += [ "//media/mojo/services:application" ] |
| 963 } else if (enable_mojo_media != "none") { |
| 964 configs += [ "//media/mojo/services:enable_mojo_media_config" ] |
963 } | 965 } |
964 | 966 |
965 if (enable_wayland_server) { | 967 if (enable_wayland_server) { |
966 deps += [ | 968 deps += [ |
967 "//components/exo", | 969 "//components/exo", |
968 "//components/exo/wayland", | 970 "//components/exo/wayland", |
969 ] | 971 ] |
970 sources += [ | 972 sources += [ |
971 "chrome_browser_main_extra_parts_exo.cc", | 973 "chrome_browser_main_extra_parts_exo.cc", |
972 "chrome_browser_main_extra_parts_exo.h", | 974 "chrome_browser_main_extra_parts_exo.h", |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1335 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1337 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1336 deps = [ | 1338 deps = [ |
1337 "//components/google/core/browser", | 1339 "//components/google/core/browser", |
1338 "//components/omnibox/browser", | 1340 "//components/omnibox/browser", |
1339 "//components/rlz", | 1341 "//components/rlz", |
1340 "//components/search_engines", | 1342 "//components/search_engines", |
1341 "//rlz:rlz_lib", | 1343 "//rlz:rlz_lib", |
1342 ] | 1344 ] |
1343 } | 1345 } |
1344 } | 1346 } |
OLD | NEW |