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

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

Issue 2540603004: [Android] Redirect std{in,out,err} to sockets for layout tests. (Closed)
Patch Set: Fix server_process_constructor name. Created 4 years 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 25 matching lines...) Expand all
36 testonly = true 36 testonly = true
37 resource_dirs = [ "java/res" ] 37 resource_dirs = [ "java/res" ]
38 custom_package = "org.chromium.content_shell" 38 custom_package = "org.chromium.content_shell"
39 } 39 }
40 40
41 android_library("content_shell_java") { 41 android_library("content_shell_java") {
42 testonly = true 42 testonly = true
43 deps = [ 43 deps = [
44 ":content_shell_java_resources", 44 ":content_shell_java_resources",
45 "//base:base_java", 45 "//base:base_java",
46 "//base:base_java_test_support",
46 "//content/public/android:content_java", 47 "//content/public/android:content_java",
47 "//device/geolocation:geolocation_java", 48 "//device/geolocation:geolocation_java",
48 "//media/base/android:media_java", 49 "//media/base/android:media_java",
49 "//media/capture/video/android:capture_java", 50 "//media/capture/video/android:capture_java",
50 "//mojo/public/java:system_java", 51 "//mojo/public/java:system_java",
51 "//net/android:net_java", 52 "//net/android:net_java",
52 "//ui/android:ui_java", 53 "//ui/android:ui_java",
53 ] 54 ]
54 java_files = [ 55 java_files = [
55 "java/src/org/chromium/content_shell/Shell.java", 56 "java/src/org/chromium/content_shell/Shell.java",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 testonly = true 236 testonly = true
236 deps = [ 237 deps = [
237 ":content_shell_java", 238 ":content_shell_java",
238 "//base:base_java", 239 "//base:base_java",
239 "//content/public/android:content_java", 240 "//content/public/android:content_java",
240 "//testing/android/native_test:native_test_java", 241 "//testing/android/native_test:native_test_java",
241 "//ui/android:ui_java", 242 "//ui/android:ui_java",
242 ] 243 ]
243 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ] 244 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ]
244 } 245 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698