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