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

Side by Side Diff: android_webview/BUILD.gn

Issue 2738743003: Making the AIDL GN target support multiple include directories. (Closed)
Patch Set: Making the AIDL GN tag support multiple include directories. Created 3 years, 9 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
« no previous file with comments | « no previous file | base/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//android_webview/system_webview_apk_tmpl.gni") 5 import("//android_webview/system_webview_apk_tmpl.gni")
6 import("//android_webview/webview_repack_locales.gni") 6 import("//android_webview/webview_repack_locales.gni")
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//components/spellcheck/spellcheck_build_features.gni") 10 import("//components/spellcheck/spellcheck_build_features.gni")
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 ":android_webview_commandline_java", 784 ":android_webview_commandline_java",
785 ":android_webview_platform_services_java", 785 ":android_webview_platform_services_java",
786 "//base:base_java", 786 "//base:base_java",
787 "//components/minidump_uploader:minidump_uploader_java", 787 "//components/minidump_uploader:minidump_uploader_java",
788 ] 788 ]
789 789
790 srcjar_deps = [ ":crash_receiver_aidl" ] 790 srcjar_deps = [ ":crash_receiver_aidl" ]
791 } 791 }
792 792
793 android_aidl("crash_receiver_aidl") { 793 android_aidl("crash_receiver_aidl") {
794 import_include = "java/src" 794 import_include = [ "java/src" ]
795 sources = [ 795 sources = [
796 "java/src/org/chromium/android_webview/crash/ICrashReceiverService.aidl", 796 "java/src/org/chromium/android_webview/crash/ICrashReceiverService.aidl",
797 ] 797 ]
798 } 798 }
799 799
800 if (!use_webview_internal_framework) { 800 if (!use_webview_internal_framework) {
801 system_webview_apk_tmpl("system_webview_apk") { 801 system_webview_apk_tmpl("system_webview_apk") {
802 android_manifest = system_webview_android_manifest 802 android_manifest = system_webview_android_manifest
803 android_manifest_dep = ":system_webview_manifest" 803 android_manifest_dep = ":system_webview_manifest"
804 deps = [ 804 deps = [
805 ":system_webview_resources", 805 ":system_webview_resources",
806 "//android_webview/glue", 806 "//android_webview/glue",
807 ] 807 ]
808 apk_name = "SystemWebView" 808 apk_name = "SystemWebView"
809 } 809 }
810 } 810 }
OLDNEW
« no previous file with comments | « no previous file | base/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698