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

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

Issue 1930393002: Switch stream creation and closing in Chrome audio rendering from IPC to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use wrap Created 4 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/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "//content/public/browser", 62 "//content/public/browser",
63 "//content/public/child", 63 "//content/public/child",
64 "//content/public/renderer", 64 "//content/public/renderer",
65 "//content/public/utility", 65 "//content/public/utility",
66 "//content/renderer:for_content_tests", 66 "//content/renderer:for_content_tests",
67 "//content/shell:pak", 67 "//content/shell:pak",
68 "//content/utility:for_content_tests", 68 "//content/utility:for_content_tests",
69 "//ipc:test_support", 69 "//ipc:test_support",
70 "//ipc/mojo", 70 "//ipc/mojo",
71 "//media", 71 "//media",
72 "//media/mojo/interfaces",
nasko 2016/05/25 20:50:42 Why is this dependency needed? From content/common
rchtara 2016/05/27 15:24:39 Done.
72 "//mojo/edk/test:test_support", 73 "//mojo/edk/test:test_support",
73 "//net:test_support", 74 "//net:test_support",
74 "//services/shell/public/cpp", 75 "//services/shell/public/cpp",
75 "//skia", 76 "//skia",
76 "//storage/browser", 77 "//storage/browser",
77 "//storage/common", 78 "//storage/common",
78 "//testing/gmock", 79 "//testing/gmock",
79 "//testing/gtest", 80 "//testing/gtest",
80 "//ui/accessibility:ax_gen", 81 "//ui/accessibility:ax_gen",
81 "//ui/base", 82 "//ui/base",
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 "//device/battery", 454 "//device/battery",
454 "//device/battery:mojo_bindings", 455 "//device/battery:mojo_bindings",
455 "//device/vibration:mojo_bindings", 456 "//device/vibration:mojo_bindings",
456 "//gin", 457 "//gin",
457 "//gpu", 458 "//gpu",
458 "//ipc:test_support", 459 "//ipc:test_support",
459 "//media", 460 "//media",
460 "//media:test_support", 461 "//media:test_support",
461 "//media/audio:test_support", 462 "//media/audio:test_support",
462 "//media/base:test_support", 463 "//media/base:test_support",
464 "//media/mojo/common",
465 "//media/mojo/interfaces",
nasko 2016/05/25 20:50:43 Same question as above.
rchtara 2016/05/27 15:24:39 Done.
463 "//mojo/edk/system", 466 "//mojo/edk/system",
464 "//mojo/edk/test:test_support", 467 "//mojo/edk/test:test_support",
465 "//mojo/public/cpp/bindings", 468 "//mojo/public/cpp/bindings",
466 "//mojo/public/js", 469 "//mojo/public/js",
467 "//mojo/test:test_support", 470 "//mojo/test:test_support",
468 "//net:test_support", 471 "//net:test_support",
469 "//services/shell/public/cpp", 472 "//services/shell/public/cpp",
470 "//storage/browser", 473 "//storage/browser",
471 "//testing/gmock", 474 "//testing/gmock",
472 "//testing/gtest", 475 "//testing/gtest",
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 "//testing/gtest", 899 "//testing/gtest",
897 "//testing/perf", 900 "//testing/perf",
898 "//ui/gfx", 901 "//ui/gfx",
899 "//ui/gfx/geometry", 902 "//ui/gfx/geometry",
900 ] 903 ]
901 904
902 if (is_android) { 905 if (is_android) {
903 deps += [ "//testing/android/native_test:native_test_native_code" ] 906 deps += [ "//testing/android/native_test:native_test_native_code" ]
904 } 907 }
905 } 908 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698