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

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

Issue 2873243002: Move components/display_compositor to components/viz/display_compositor (Closed)
Patch Set: Rebase and fix mac build 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/crypto.gni") 8 import("//build/config/crypto.gni")
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 "//third_party/WebKit/public:test_support", 234 "//third_party/WebKit/public:test_support",
235 ] 235 ]
236 deps = [ 236 deps = [
237 ":content_test_mojo_bindings", 237 ":content_test_mojo_bindings",
238 "//base/third_party/dynamic_annotations", 238 "//base/third_party/dynamic_annotations",
239 "//cc:test_support", 239 "//cc:test_support",
240 "//cc/blink", 240 "//cc/blink",
241 "//cc/ipc", 241 "//cc/ipc",
242 "//cc/ipc:interfaces", 242 "//cc/ipc:interfaces",
243 "//cc/surfaces", 243 "//cc/surfaces",
244 "//components/display_compositor",
245 "//components/leveldb/public/interfaces", 244 "//components/leveldb/public/interfaces",
246 "//components/payments/mojom:mojom_payment_app", 245 "//components/payments/mojom:mojom_payment_app",
246 "//components/viz/display_compositor",
247 "//content/app:both_for_content_tests", 247 "//content/app:both_for_content_tests",
248 "//content/browser:for_content_tests", 248 "//content/browser:for_content_tests",
249 "//content/browser/speech/proto", 249 "//content/browser/speech/proto",
250 "//content/child:for_content_tests", 250 "//content/child:for_content_tests",
251 "//content/gpu", 251 "//content/gpu",
252 "//content/public/browser", 252 "//content/public/browser",
253 "//content/public/child", 253 "//content/public/child",
254 "//content/public/common:interfaces", 254 "//content/public/common:interfaces",
255 "//content/public/common:service_names", 255 "//content/public/common:service_names",
256 "//content/public/renderer", 256 "//content/public/renderer",
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 deps = [ 1439 deps = [
1440 ":content_test_mojo_bindings", 1440 ":content_test_mojo_bindings",
1441 ":content_unittests_catalog_source", 1441 ":content_unittests_catalog_source",
1442 ":test_support", 1442 ":test_support",
1443 "//base/test:test_support", 1443 "//base/test:test_support",
1444 "//base/third_party/dynamic_annotations", 1444 "//base/third_party/dynamic_annotations",
1445 "//cc", 1445 "//cc",
1446 "//cc:test_support", 1446 "//cc:test_support",
1447 "//cc/ipc", 1447 "//cc/ipc",
1448 "//cc/surfaces", 1448 "//cc/surfaces",
1449 "//components/display_compositor",
1450 "//components/leveldb/public/cpp", 1449 "//components/leveldb/public/cpp",
1451 "//components/payments/mojom", 1450 "//components/payments/mojom",
1452 "//components/payments/mojom:mojom_payment_app", 1451 "//components/payments/mojom:mojom_payment_app",
1453 "//components/rappor:test_support", 1452 "//components/rappor:test_support",
1453 "//components/viz/display_compositor",
1454 "//components/viz/frame_sinks", 1454 "//components/viz/frame_sinks",
1455 "//content:resources", 1455 "//content:resources",
1456 "//content/app:both_for_content_tests", 1456 "//content/app:both_for_content_tests",
1457 "//content/browser:for_content_tests", 1457 "//content/browser:for_content_tests",
1458 "//content/browser/cache_storage:cache_storage_proto", 1458 "//content/browser/cache_storage:cache_storage_proto",
1459 "//content/browser/dom_storage:local_storage_proto", 1459 "//content/browser/dom_storage:local_storage_proto",
1460 "//content/browser/notifications:notification_proto", 1460 "//content/browser/notifications:notification_proto",
1461 "//content/browser/service_worker:service_worker_proto", 1461 "//content/browser/service_worker:service_worker_proto",
1462 "//content/browser/speech/proto", 1462 "//content/browser/speech/proto",
1463 "//content/child:for_content_tests", 1463 "//content/child:for_content_tests",
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
1836 if (is_android) { 1836 if (is_android) {
1837 deps += [ "//testing/android/native_test:native_test_native_code" ] 1837 deps += [ "//testing/android/native_test:native_test_native_code" ]
1838 } 1838 }
1839 } 1839 }
1840 1840
1841 group("fuzzers") { 1841 group("fuzzers") {
1842 deps = [ 1842 deps = [
1843 "//content/test/fuzzer", 1843 "//content/test/fuzzer",
1844 ] 1844 ]
1845 } 1845 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698