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

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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 ] 48 ]
49 49
50 if (!is_ios) { 50 if (!is_ios) {
51 sources = 51 sources =
52 rebase_path(content_tests_gypi_values.test_support_content_sources, 52 rebase_path(content_tests_gypi_values.test_support_content_sources,
53 ".", 53 ".",
54 "//content") 54 "//content")
55 55
56 public_deps += [ "//third_party/WebKit/public:blink" ] 56 public_deps += [ "//third_party/WebKit/public:blink" ]
57 deps += [ 57 deps += [
58 ":content_test_mojo_bindings",
58 "//components/scheduler:scheduler", 59 "//components/scheduler:scheduler",
59 "//components/scheduler:test_support", 60 "//components/scheduler:test_support",
60 "//content/browser/speech/proto", 61 "//content/browser/speech/proto",
61 "//content/public/child", 62 "//content/public/child",
62 "//content/gpu", 63 "//content/gpu",
63 "//content/public/plugin", 64 "//content/public/plugin",
64 "//content/public/renderer", 65 "//content/public/renderer",
65 "//content/public/utility", 66 "//content/public/utility",
66 "//content/shell:pak", 67 "//content/shell:pak",
67 "//cc", 68 "//cc",
68 "//cc:test_support", 69 "//cc:test_support",
69 "//ipc/mojo", 70 "//ipc/mojo",
70 "//media", 71 "//media",
72 "//mojo/application/public/cpp:cpp_for_chromium",
73 "//mojo/environment:chromium",
71 "//ppapi/host", 74 "//ppapi/host",
72 "//ppapi/proxy", 75 "//ppapi/proxy",
73 "//ppapi/proxy:test_support", 76 "//ppapi/proxy:test_support",
74 "//ppapi/shared_impl", 77 "//ppapi/shared_impl",
75 "//ppapi/shared_impl:test_support", 78 "//ppapi/shared_impl:test_support",
76 "//storage/browser", 79 "//storage/browser",
77 "//storage/common", 80 "//storage/common",
78 "//ui/surface", 81 "//ui/surface",
79 "//v8", 82 "//v8",
80 ] 83 ]
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 "//ui/accessibility:ax_gen", 197 "//ui/accessibility:ax_gen",
195 ] 198 ]
196 199
197 if (is_android) { 200 if (is_android) {
198 deps += [ "//content/public/app:both" ] 201 deps += [ "//content/public/app:both" ]
199 } else { 202 } else {
200 deps += [ "//content/public/browser" ] 203 deps += [ "//content/public/browser" ]
201 } 204 }
202 } 205 }
203 206
207 mojom("content_test_mojo_bindings") {
208 sources = [
209 "../public/test/test_mojo_service.mojom",
210 ]
211 }
212
204 mojom("web_ui_test_mojo_bindings") { 213 mojom("web_ui_test_mojo_bindings") {
205 sources = [ 214 sources = [
206 "data/web_ui_test_mojo_bindings.mojom", 215 "data/web_ui_test_mojo_bindings.mojom",
207 ] 216 ]
208 } 217 }
209 218
210 if (!is_ios) { 219 if (!is_ios) {
211 # GYP version //content/content_tests.gypi:layouttest_support_content 220 # GYP version //content/content_tests.gypi:layouttest_support_content
212 static_library("layouttest_support") { 221 static_library("layouttest_support") {
213 testonly = true 222 testonly = true
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "//content/test:test_support", 281 "//content/test:test_support",
273 "//device/battery", 282 "//device/battery",
274 "//device/battery:mojo_bindings", 283 "//device/battery:mojo_bindings",
275 "//gin", 284 "//gin",
276 "//gpu", 285 "//gpu",
277 "//ipc:test_support", 286 "//ipc:test_support",
278 "//media:test_support", 287 "//media:test_support",
279 "//media/audio:test_support", 288 "//media/audio:test_support",
280 "//media/base:test_support", 289 "//media/base:test_support",
281 "//media:shared_memory_support", 290 "//media:shared_memory_support",
291 "//mojo/application/public/cpp:cpp_for_chromium",
282 "//mojo/environment:chromium", 292 "//mojo/environment:chromium",
283 "//net:test_support", 293 "//net:test_support",
284 "//ppapi/host", 294 "//ppapi/host",
285 "//ppapi/proxy", 295 "//ppapi/proxy",
286 "//ppapi/proxy:ipc", 296 "//ppapi/proxy:ipc",
287 "//ppapi/shared_impl", 297 "//ppapi/shared_impl",
288 "//third_party/mojo/src/mojo/edk/system", 298 "//third_party/mojo/src/mojo/edk/system",
289 "//third_party/mojo/src/mojo/edk/test:test_support", 299 "//third_party/mojo/src/mojo/edk/test:test_support",
290 "//third_party/mojo/src/mojo/public/cpp/bindings", 300 "//third_party/mojo/src/mojo/public/cpp/bindings",
291 "//third_party/mojo/src/mojo/public/js", 301 "//third_party/mojo/src/mojo/public/js",
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 "//gpu/blink", 697 "//gpu/blink",
688 "//testing/gtest", 698 "//testing/gtest",
689 "//third_party/WebKit/public:blink", 699 "//third_party/WebKit/public:blink",
690 "//ui/base", 700 "//ui/base",
691 "//ui/gfx", 701 "//ui/gfx",
692 "//ui/gfx/geometry", 702 "//ui/gfx/geometry",
693 "//ui/gl", 703 "//ui/gl",
694 ] 704 ]
695 } 705 }
696 } 706 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698