Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(765)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 1425113003: media: Register MojoMediaApplication to run in Utility process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 # and Mac, so this test is meaningless. Can we merge these lists? 878 # and Mac, so this test is meaningless. Can we merge these lists?
879 sources += rebase_path( 879 sources += rebase_path(
880 gypi_values.chrome_browser_wifi_bootstrapping_win_mac_sources, 880 gypi_values.chrome_browser_wifi_bootstrapping_win_mac_sources,
881 ".", 881 ".",
882 "//chrome") 882 "//chrome")
883 } 883 }
884 } 884 }
885 if (enable_media_router) { 885 if (enable_media_router) {
886 deps += [ "//chrome/browser/media/router" ] 886 deps += [ "//chrome/browser/media/router" ]
887 } 887 }
888
889 if (enable_mojo_media != "none") {
Lei Zhang 2015/10/29 21:23:52 No equivalent GYP change?
xhwang 2015/10/29 21:25:47 Good question. The MojoMediaApplication currently
890 configs += [ "//media/mojo/services:enable_mojo_media_config" ]
891 }
892
893 if (enable_mojo_media == "utility") {
894 deps += [ "//media/mojo/services:application" ]
895 }
888 } 896 }
889 897
890 if (is_android) { 898 if (is_android) {
891 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers 899 # GYP version: chrome/chrome_browser.gypi:chrome_browser_jni_headers
892 generate_jni("jni_headers") { 900 generate_jni("jni_headers") {
893 sources = 901 sources =
894 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome") 902 rebase_path(gypi_values.chrome_browser_jni_sources, ".", "//chrome")
895 jni_package = "chrome" 903 jni_package = "chrome"
896 } 904 }
897 905
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
1254 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1262 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1255 deps = [ 1263 deps = [
1256 "//components/google/core/browser", 1264 "//components/google/core/browser",
1257 "//components/omnibox/browser", 1265 "//components/omnibox/browser",
1258 "//components/rlz", 1266 "//components/rlz",
1259 "//components/search_engines", 1267 "//components/search_engines",
1260 "//rlz:rlz_lib", 1268 "//rlz:rlz_lib",
1261 ] 1269 ]
1262 } 1270 }
1263 } 1271 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chrome_content_browser_client.h » ('j') | chromecast/browser/cast_content_browser_client.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698