| 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 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 944 sources -= [ | 944 sources -= [ |
| 945 "autofill/validation_rules_storage_factory.cc", | 945 "autofill/validation_rules_storage_factory.cc", |
| 946 "autofill/validation_rules_storage_factory.h", | 946 "autofill/validation_rules_storage_factory.h", |
| 947 ] | 947 ] |
| 948 } | 948 } |
| 949 if (enable_media_router) { | 949 if (enable_media_router) { |
| 950 deps += [ "//chrome/browser/media/router" ] | 950 deps += [ "//chrome/browser/media/router" ] |
| 951 } | 951 } |
| 952 | 952 |
| 953 if (enable_mojo_media != "none") { | 953 if (enable_mojo_media != "none") { |
| 954 configs += [ "//media/mojo/services:enable_mojo_media_config" ] | 954 deps += [ "//media/mojo/services:default_application" ] |
| 955 } | |
| 956 | |
| 957 if (enable_mojo_media == "utility") { | |
| 958 deps += [ "//media/mojo/services:application" ] | |
| 959 } | 955 } |
| 960 | 956 |
| 961 if (enable_wayland_server) { | 957 if (enable_wayland_server) { |
| 962 deps += [ | 958 deps += [ |
| 963 "//components/exo", | 959 "//components/exo", |
| 964 "//components/exo/wayland", | 960 "//components/exo/wayland", |
| 965 ] | 961 ] |
| 966 sources += [ | 962 sources += [ |
| 967 "chrome_browser_main_extra_parts_exo.cc", | 963 "chrome_browser_main_extra_parts_exo.cc", |
| 968 "chrome_browser_main_extra_parts_exo.h", | 964 "chrome_browser_main_extra_parts_exo.h", |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1325 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1330 deps = [ | 1326 deps = [ |
| 1331 "//components/google/core/browser", | 1327 "//components/google/core/browser", |
| 1332 "//components/omnibox/browser", | 1328 "//components/omnibox/browser", |
| 1333 "//components/rlz", | 1329 "//components/rlz", |
| 1334 "//components/search_engines", | 1330 "//components/search_engines", |
| 1335 "//rlz:rlz_lib", | 1331 "//rlz:rlz_lib", |
| 1336 ] | 1332 ] |
| 1337 } | 1333 } |
| 1338 } | 1334 } |
| OLD | NEW |