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

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 of process_ instead of audio_renderer_host 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "//content/public/browser", 61 "//content/public/browser",
62 "//content/public/child", 62 "//content/public/child",
63 "//content/public/renderer", 63 "//content/public/renderer",
64 "//content/public/utility", 64 "//content/public/utility",
65 "//content/renderer:for_content_tests", 65 "//content/renderer:for_content_tests",
66 "//content/shell:pak", 66 "//content/shell:pak",
67 "//content/utility:for_content_tests", 67 "//content/utility:for_content_tests",
68 "//ipc:test_support", 68 "//ipc:test_support",
69 "//ipc/mojo", 69 "//ipc/mojo",
70 "//media", 70 "//media",
71 "//media/mojo/interfaces",
71 "//mojo/edk/test:test_support", 72 "//mojo/edk/test:test_support",
72 "//net:test_support", 73 "//net:test_support",
73 "//services/shell/public/cpp:cpp_for_chromium", 74 "//services/shell/public/cpp:cpp_for_chromium",
74 "//skia", 75 "//skia",
75 "//storage/browser", 76 "//storage/browser",
76 "//storage/common", 77 "//storage/common",
77 "//testing/gmock", 78 "//testing/gmock",
78 "//testing/gtest", 79 "//testing/gtest",
79 "//ui/accessibility:ax_gen", 80 "//ui/accessibility:ax_gen",
80 "//ui/base", 81 "//ui/base",
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "//device/battery", 453 "//device/battery",
453 "//device/battery:mojo_bindings", 454 "//device/battery:mojo_bindings",
454 "//device/vibration:mojo_bindings", 455 "//device/vibration:mojo_bindings",
455 "//gin", 456 "//gin",
456 "//gpu", 457 "//gpu",
457 "//ipc:test_support", 458 "//ipc:test_support",
458 "//media", 459 "//media",
459 "//media:test_support", 460 "//media:test_support",
460 "//media/audio:test_support", 461 "//media/audio:test_support",
461 "//media/base:test_support", 462 "//media/base:test_support",
463 "//media/mojo/common",
464 "//media/mojo/interfaces",
462 "//mojo/edk/system", 465 "//mojo/edk/system",
463 "//mojo/edk/test:test_support", 466 "//mojo/edk/test:test_support",
464 "//mojo/public/cpp/bindings", 467 "//mojo/public/cpp/bindings",
465 "//mojo/public/js", 468 "//mojo/public/js",
466 "//mojo/test:test_support", 469 "//mojo/test:test_support",
467 "//net:test_support", 470 "//net:test_support",
468 "//services/shell/public/cpp:cpp_for_chromium", 471 "//services/shell/public/cpp:cpp_for_chromium",
469 "//storage/browser", 472 "//storage/browser",
470 "//testing/gmock", 473 "//testing/gmock",
471 "//testing/gtest", 474 "//testing/gtest",
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 "//testing/gtest", 897 "//testing/gtest",
895 "//testing/perf", 898 "//testing/perf",
896 "//ui/gfx", 899 "//ui/gfx",
897 "//ui/gfx/geometry", 900 "//ui/gfx/geometry",
898 ] 901 ]
899 902
900 if (is_android) { 903 if (is_android) {
901 deps += [ "//testing/android/native_test:native_test_native_code" ] 904 deps += [ "//testing/android/native_test:native_test_native_code" ]
902 } 905 }
903 } 906 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698