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

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

Issue 2206953002: Use mojo for WebappRegistry. Base URL: https://chromium.googlesource.com/chromium/src.git@java-interface-registry
Patch Set: Created 4 years, 4 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")
11 import("//media/media_options.gni") 11 import("//media/media_options.gni")
12 import("//mojo/public/tools/bindings/mojom.gni")
12 import("//third_party/protobuf/proto_library.gni") 13 import("//third_party/protobuf/proto_library.gni")
13 14
14 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 15 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
15 # produces a conflict for the "grit" template so we have to only include one. 16 # produces a conflict for the "grit" template so we have to only include one.
16 if (is_android) { 17 if (is_android) {
17 import("//build/config/android/rules.gni") 18 import("//build/config/android/rules.gni")
18 } else { 19 } else {
19 import("//tools/grit/grit_rule.gni") 20 import("//tools/grit/grit_rule.gni")
20 } 21 }
21 if (is_desktop_linux) { 22 if (is_desktop_linux) {
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 sources += rebase_path(gypi_values.chrome_browser_android_java_ui_sources, 767 sources += rebase_path(gypi_values.chrome_browser_android_java_ui_sources,
767 ".", 768 ".",
768 "//chrome") 769 "//chrome")
769 sources += rebase_path(gypi_values.chrome_browser_offline_pages_sources, 770 sources += rebase_path(gypi_values.chrome_browser_offline_pages_sources,
770 ".", 771 ".",
771 "//chrome") 772 "//chrome")
772 deps += [ 773 deps += [
773 ":client_discourse_context_proto", 774 ":client_discourse_context_proto",
774 ":delta_file_proto", 775 ":delta_file_proto",
775 ":jni_headers", 776 ":jni_headers",
777 ":webapp_registry_mojom",
776 "//blimp/client/public", 778 "//blimp/client/public",
777 "//components/data_usage/android", 779 "//components/data_usage/android",
778 "//components/precache/content", 780 "//components/precache/content",
779 "//components/precache/core", 781 "//components/precache/core",
780 "//components/resources:components_resources", 782 "//components/resources:components_resources",
781 "//components/toolbar", 783 "//components/toolbar",
782 "//components/web_contents_delegate_android", 784 "//components/web_contents_delegate_android",
783 ] 785 ]
784 } 786 }
785 787
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 "android/proto/client_discourse_context.proto", 989 "android/proto/client_discourse_context.proto",
988 ] 990 ]
989 } 991 }
990 992
991 #GYP: '//chrome/chrome_browser.gypi:delta_file_proto' 993 #GYP: '//chrome/chrome_browser.gypi:delta_file_proto'
992 proto_library("delta_file_proto") { 994 proto_library("delta_file_proto") {
993 sources = [ 995 sources = [
994 "android/proto/delta_file.proto", 996 "android/proto/delta_file.proto",
995 ] 997 ]
996 } 998 }
999
1000 mojom("webapp_registry_mojom") {
1001 sources = [
1002 "android/webapps/webapp_registry.mojom",
1003 ]
1004 }
997 } 1005 }
998 1006
999 if (is_win) { 1007 if (is_win) {
1000 static_library("chrome_process_finder") { 1008 static_library("chrome_process_finder") {
1001 sources = [ 1009 sources = [
1002 "win/chrome_process_finder.cc", 1010 "win/chrome_process_finder.cc",
1003 "win/chrome_process_finder.h", 1011 "win/chrome_process_finder.h",
1004 ] 1012 ]
1005 deps = [ 1013 deps = [
1006 "//base", 1014 "//base",
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 # linking all of the test support. 1386 # linking all of the test support.
1379 static_library("pepper_cdm_test_constants") { 1387 static_library("pepper_cdm_test_constants") {
1380 testonly = true 1388 testonly = true
1381 visibility = [ "//chrome/*" ] 1389 visibility = [ "//chrome/*" ]
1382 sources = [ 1390 sources = [
1383 "media/pepper_cdm_test_constants.cc", 1391 "media/pepper_cdm_test_constants.cc",
1384 "media/pepper_cdm_test_constants.h", 1392 "media/pepper_cdm_test_constants.h",
1385 ] 1393 ]
1386 } 1394 }
1387 } 1395 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698