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

Side by Side Diff: content/shell/android/BUILD.gn

Issue 2650013003: Bind Android ChildProcessServices to a specific client PID. (Closed)
Patch Set: Created 3 years, 11 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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 import("//build_overrides/v8.gni") 7 import("//build_overrides/v8.gni")
8 import("//third_party/icu/config.gni") 8 import("//third_party/icu/config.gni")
9 9
10 generate_jni("content_shell_jni_headers") { 10 generate_jni("content_shell_jni_headers") {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 "//content/public/android:content_java", 88 "//content/public/android:content_java",
89 "//media/capture/video/android:capture_java", 89 "//media/capture/video/android:capture_java",
90 "//net/android:net_java", 90 "//net/android:net_java",
91 "//ui/android:ui_java", 91 "//ui/android:ui_java",
92 ] 92 ]
93 93
94 # Supply manifest for linting. 94 # Supply manifest for linting.
95 android_manifest = content_shell_manifest 95 android_manifest = content_shell_manifest
96 96
97 java_files = [ 97 java_files = [
98 "shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestHelper Service.java",
98 "shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java", 99 "shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java",
99 "shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java", 100 "shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java",
100 ] 101 ]
101 } 102 }
102 103
103 android_assets("content_shell_assets") { 104 android_assets("content_shell_assets") {
104 sources = [ 105 sources = [
105 "$root_out_dir/content_shell.pak", 106 "$root_out_dir/content_shell.pak",
106 ] 107 ]
107 disable_compression = true 108 disable_compression = true
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 testonly = true 258 testonly = true
258 deps = [ 259 deps = [
259 ":content_shell_java", 260 ":content_shell_java",
260 "//base:base_java", 261 "//base:base_java",
261 "//content/public/android:content_java", 262 "//content/public/android:content_java",
262 "//testing/android/native_test:native_test_java", 263 "//testing/android/native_test:native_test_java",
263 "//ui/android:ui_java", 264 "//ui/android:ui_java",
264 ] 265 ]
265 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ] 266 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ]
266 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698