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("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 deps += [ "//chrome/browser/media/router" ] | 893 deps += [ "//chrome/browser/media/router" ] |
894 } | 894 } |
895 | 895 |
896 if (enable_mojo_media != "none") { | 896 if (enable_mojo_media != "none") { |
897 configs += [ "//media/mojo/services:enable_mojo_media_config" ] | 897 configs += [ "//media/mojo/services:enable_mojo_media_config" ] |
898 } | 898 } |
899 | 899 |
900 if (enable_mojo_media == "utility") { | 900 if (enable_mojo_media == "utility") { |
901 deps += [ "//media/mojo/services:application" ] | 901 deps += [ "//media/mojo/services:application" ] |
902 } | 902 } |
| 903 |
| 904 if (enable_wayland_server) { |
| 905 deps += [ |
| 906 "//components/exo", |
| 907 "//components/exo/wayland", |
| 908 ] |
| 909 sources += [ |
| 910 "chrome_browser_main_extra_parts_exo.cc", |
| 911 "chrome_browser_main_extra_parts_exo.h", |
| 912 ] |
| 913 } |
903 } | 914 } |
904 | 915 |
905 if (is_android) { | 916 if (is_android) { |
906 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers | 917 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers |
907 generate_jni("jni_headers") { | 918 generate_jni("jni_headers") { |
908 sources = | 919 sources = |
909 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome") | 920 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome") |
910 jni_package = "chrome" | 921 jni_package = "chrome" |
911 } | 922 } |
912 | 923 |
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1262 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1273 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1263 deps = [ | 1274 deps = [ |
1264 "//components/google/core/browser", | 1275 "//components/google/core/browser", |
1265 "//components/omnibox/browser", | 1276 "//components/omnibox/browser", |
1266 "//components/rlz", | 1277 "//components/rlz", |
1267 "//components/search_engines", | 1278 "//components/search_engines", |
1268 "//rlz:rlz_lib", | 1279 "//rlz:rlz_lib", |
1269 ] | 1280 ] |
1270 } | 1281 } |
1271 } | 1282 } |
OLD | NEW |