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

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

Issue 2214383002: Move registration of Java mojo interfaces to the new InterfaceRegistrar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@java-content-interface-registry
Patch Set: Created 4 years, 3 months 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("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3442 matching lines...) Expand 10 before | Expand all | Expand 10 after
3453 if (!use_ozone) { 3453 if (!use_ozone) {
3454 sources += [ 3454 sources += [
3455 "password_manager/native_backend_libsecret.cc", 3455 "password_manager/native_backend_libsecret.cc",
3456 "password_manager/native_backend_libsecret.h", 3456 "password_manager/native_backend_libsecret.h",
3457 ] 3457 ]
3458 defines += [ "USE_LIBSECRET" ] 3458 defines += [ "USE_LIBSECRET" ]
3459 deps += [ "//third_party/libsecret" ] 3459 deps += [ "//third_party/libsecret" ]
3460 } 3460 }
3461 } 3461 }
3462 3462
3463 if (android_java_ui) {
3464 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ]
3465 }
3466
3463 if (enable_plugin_installation) { 3467 if (enable_plugin_installation) {
3464 sources += [ 3468 sources += [
3465 "plugins/plugin_installer.cc", 3469 "plugins/plugin_installer.cc",
3466 "plugins/plugin_installer.h", 3470 "plugins/plugin_installer.h",
3467 "plugins/plugin_installer_observer.cc", 3471 "plugins/plugin_installer_observer.cc",
3468 "plugins/plugin_installer_observer.h", 3472 "plugins/plugin_installer_observer.h",
3469 "plugins/plugins_resource_service.cc", 3473 "plugins/plugins_resource_service.cc",
3470 "plugins/plugins_resource_service.h", 3474 "plugins/plugins_resource_service.h",
3471 ] 3475 ]
3472 } 3476 }
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
4247 # linking all of the test support. 4251 # linking all of the test support.
4248 static_library("pepper_cdm_test_constants") { 4252 static_library("pepper_cdm_test_constants") {
4249 testonly = true 4253 testonly = true
4250 visibility = [ "//chrome/*" ] 4254 visibility = [ "//chrome/*" ]
4251 sources = [ 4255 sources = [
4252 "media/pepper_cdm_test_constants.cc", 4256 "media/pepper_cdm_test_constants.cc",
4253 "media/pepper_cdm_test_constants.h", 4257 "media/pepper_cdm_test_constants.h",
4254 ] 4258 ]
4255 } 4259 }
4256 } 4260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698