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

Side by Side Diff: components/test_runner/BUILD.gn

Issue 2549363004: Multiprocess test client: Android child process launcher rework. (Closed)
Patch Set: content_unittests + sync 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 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 } 9 }
10 10
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 "//v8", 131 "//v8",
132 ] 132 ]
133 133
134 data_deps = [ 134 data_deps = [
135 ":resources", 135 ":resources",
136 ] 136 ]
137 137
138 if (is_mac) { 138 if (is_mac) {
139 libs = [ "AppKit.framework" ] 139 libs = [ "AppKit.framework" ]
140 } 140 }
141
142 if (is_android) {
143 deps += [ "//base/test:test_support_main_stub" ]
144 }
141 } 145 }
142 146
143 # Font copies. 147 # Font copies.
144 if (!is_mac) { 148 if (!is_mac) {
145 copy("copy_ahem") { 149 copy("copy_ahem") {
146 visibility = [ ":*" ] 150 visibility = [ ":*" ]
147 sources = [ 151 sources = [
148 "resources/fonts/AHEM____.TTF", 152 "resources/fonts/AHEM____.TTF",
149 ] 153 ]
150 outputs = [ 154 outputs = [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 208
205 if (use_x11) { 209 if (use_x11) {
206 deps += [ ":copy_x11_fonts" ] 210 deps += [ ":copy_x11_fonts" ]
207 data_deps += [ ":copy_x11_fonts" ] 211 data_deps += [ ":copy_x11_fonts" ]
208 } 212 }
209 if (is_android) { 213 if (is_android) {
210 deps += [ ":copy_android_fonts" ] 214 deps += [ ":copy_android_fonts" ]
211 data_deps += [ ":copy_android_fonts" ] 215 data_deps += [ ":copy_android_fonts" ]
212 } 216 }
213 } 217 }
OLDNEW
« no previous file with comments | « build/android/pylib/gtest/gtest_test_instance.py ('k') | content/browser/memory/memory_coordinator_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698