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

Side by Side Diff: content/test/BUILD.gn

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/module_args/v8.gni") 9 import("//build/module_args/v8.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "//ui/accessibility:ax_gen", 193 "//ui/accessibility:ax_gen",
194 ] 194 ]
195 195
196 if (is_android) { 196 if (is_android) {
197 deps += [ "//content/public/app:both" ] 197 deps += [ "//content/public/app:both" ]
198 } else { 198 } else {
199 deps += [ "//content/public/browser" ] 199 deps += [ "//content/public/browser" ]
200 } 200 }
201 } 201 }
202 202
203 mojom("content_test_mojo_bindings") {
204 sources = [
205 "test_service.mojom",
206 ]
207 }
208
203 mojom("web_ui_test_mojo_bindings") { 209 mojom("web_ui_test_mojo_bindings") {
204 sources = [ 210 sources = [
205 "data/web_ui_test_mojo_bindings.mojom", 211 "data/web_ui_test_mojo_bindings.mojom",
206 ] 212 ]
207 } 213 }
208 214
209 if (!is_ios) { 215 if (!is_ios) {
210 # GYP version //content/content_tests.gypi:layouttest_support_content 216 # GYP version //content/content_tests.gypi:layouttest_support_content
211 static_library("layouttest_support") { 217 static_library("layouttest_support") {
212 testonly = true 218 testonly = true
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 rebase_path(content_tests_gypi_values.content_browsertests_sources, 262 rebase_path(content_tests_gypi_values.content_browsertests_sources,
257 ".", 263 ".",
258 "//content") 264 "//content")
259 265
260 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 266 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
261 267
262 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 268 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
263 269
264 deps = [ 270 deps = [
265 ":browsertest_support", 271 ":browsertest_support",
272 ":content_test_mojo_bindings",
266 ":web_ui_test_mojo_bindings", 273 ":web_ui_test_mojo_bindings",
267 "//base/allocator", 274 "//base/allocator",
268 "//base/test:test_support", 275 "//base/test:test_support",
269 "//content/common:mojo_bindings", 276 "//content/common:mojo_bindings",
270 "//content/gpu", 277 "//content/gpu",
271 "//content/public/common", 278 "//content/public/common",
272 "//content/public/plugin", 279 "//content/public/plugin",
273 "//content/public/renderer", 280 "//content/public/renderer",
274 "//content:resources", 281 "//content:resources",
275 "//content/shell:content_shell_lib", 282 "//content/shell:content_shell_lib",
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 "//gpu/blink", 699 "//gpu/blink",
693 "//testing/gtest", 700 "//testing/gtest",
694 "//third_party/WebKit/public:blink", 701 "//third_party/WebKit/public:blink",
695 "//ui/base", 702 "//ui/base",
696 "//ui/gfx", 703 "//ui/gfx",
697 "//ui/gfx/geometry", 704 "//ui/gfx/geometry",
698 "//ui/gl", 705 "//ui/gl",
699 ] 706 ]
700 } 707 }
701 } 708 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698