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

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

Issue 2840303002: Making ChildProcessConnection only accessed from the launcher thread. (Closed)
Patch Set: Clean-up + sync Created 3 years, 7 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("//third_party/icu/config.gni") 7 import("//third_party/icu/config.gni")
8 8
9 generate_jni("content_shell_jni_headers") { 9 generate_jni("content_shell_jni_headers") {
10 jni_package = "content/shell" 10 jni_package = "content/shell"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/ChildProcessLauncherTestHelper Service.java",
99 "shell_apk/src/org/chromium/content_shell_apk/ChildProcessLauncherTestUtils. java",
99 "shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java", 100 "shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java",
100 "shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java", 101 "shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java",
101 ] 102 ]
102 } 103 }
103 104
104 android_assets("content_shell_assets") { 105 android_assets("content_shell_assets") {
105 sources = [ 106 sources = [
106 "$root_out_dir/content_shell.pak", 107 "$root_out_dir/content_shell.pak",
107 ] 108 ]
108 disable_compression = true 109 disable_compression = true
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 testonly = true 265 testonly = true
265 deps = [ 266 deps = [
266 ":content_shell_java", 267 ":content_shell_java",
267 "//base:base_java", 268 "//base:base_java",
268 "//content/public/android:content_java", 269 "//content/public/android:content_java",
269 "//testing/android/native_test:native_test_java", 270 "//testing/android/native_test:native_test_java",
270 "//ui/android:ui_java", 271 "//ui/android:ui_java",
271 ] 272 ]
272 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ] 273 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ]
273 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698