| 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 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 936 } | 936 } |
| 937 | 937 |
| 938 if (enable_mojo_media) { | 938 if (enable_mojo_media) { |
| 939 configs += [ "//media/mojo/services:mojo_media_config" ] | 939 configs += [ "//media/mojo/services:mojo_media_config" ] |
| 940 sources += [ | 940 sources += [ |
| 941 "media/output_protection_impl.cc", | 941 "media/output_protection_impl.cc", |
| 942 "media/output_protection_impl.h", | 942 "media/output_protection_impl.h", |
| 943 ] | 943 ] |
| 944 deps += [ "//media/mojo/interfaces" ] | 944 deps += [ "//media/mojo/interfaces" ] |
| 945 if (mojo_media_host == "browser") { | 945 if (mojo_media_host == "browser") { |
| 946 deps += [ "//media/mojo/services:application_factory" ] | 946 deps += [ "//media/mojo/services" ] |
| 947 } | 947 } |
| 948 } | 948 } |
| 949 | 949 |
| 950 if (enable_wayland_server) { | 950 if (enable_wayland_server) { |
| 951 deps += [ | 951 deps += [ |
| 952 "//components/exo", | 952 "//components/exo", |
| 953 "//components/exo/wayland", | 953 "//components/exo/wayland", |
| 954 ] | 954 ] |
| 955 sources += [ | 955 sources += [ |
| 956 "chrome_browser_main_extra_parts_exo.cc", | 956 "chrome_browser_main_extra_parts_exo.cc", |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1328 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1328 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1329 deps = [ | 1329 deps = [ |
| 1330 "//components/google/core/browser", | 1330 "//components/google/core/browser", |
| 1331 "//components/omnibox/browser", | 1331 "//components/omnibox/browser", |
| 1332 "//components/rlz", | 1332 "//components/rlz", |
| 1333 "//components/search_engines", | 1333 "//components/search_engines", |
| 1334 "//rlz:rlz_lib", | 1334 "//rlz:rlz_lib", |
| 1335 ] | 1335 ] |
| 1336 } | 1336 } |
| 1337 } | 1337 } |
| OLD | NEW |