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