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

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

Issue 2274873003: Letting Flash join MediaSession (stack implementaion) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@media_session_type
Patch Set: addressed Anton's comments Created 4 years, 2 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("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 1580 matching lines...) Expand 10 before | Expand all | Expand 10 after
1591 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc", 1591 "../browser/android/java/gin_java_method_invocation_helper_unittest.cc",
1592 "../browser/android/java/java_type_unittest.cc", 1592 "../browser/android/java/java_type_unittest.cc",
1593 "../browser/android/java/jni_helper_unittest.cc", 1593 "../browser/android/java/jni_helper_unittest.cc",
1594 "../browser/android/scoped_surface_request_manager_unittest.cc", 1594 "../browser/android/scoped_surface_request_manager_unittest.cc",
1595 "../browser/android/url_request_content_job_unittest.cc", 1595 "../browser/android/url_request_content_job_unittest.cc",
1596 "../renderer/java/gin_java_bridge_value_converter_unittest.cc", 1596 "../renderer/java/gin_java_bridge_value_converter_unittest.cc",
1597 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc", 1597 "../renderer/media/android/stream_texture_wrapper_impl_unittest.cc",
1598 "../renderer/media/android/webmediasession_android_unittest.cc", 1598 "../renderer/media/android/webmediasession_android_unittest.cc",
1599 ] 1599 ]
1600 sources -= [ 1600 sources -= [
1601 "../browser/media/session/audio_focus_manager_unittest.cc",
mlamouri (slow - plz ping) 2016/09/30 09:35:22 Can you also remove the implementation from Androi
Zhiqiang Zhang (Slow) 2016/09/30 10:04:43 Done.
1601 "../browser/power_usage_monitor_impl_unittest.cc", 1602 "../browser/power_usage_monitor_impl_unittest.cc",
1602 "../browser/webui/url_data_manager_backend_unittest.cc", 1603 "../browser/webui/url_data_manager_backend_unittest.cc",
1603 ] 1604 ]
1604 deps -= [ "//device/battery" ] 1605 deps -= [ "//device/battery" ]
1605 1606
1606 deps += [ 1607 deps += [
1607 "//base:base_java_unittest_support", 1608 "//base:base_java_unittest_support",
1608 "//content/public/android:content_java", 1609 "//content/public/android:content_java",
1609 "//device/geolocation:geolocation_java", 1610 "//device/geolocation:geolocation_java",
1610 "//v8:v8_external_startup_data_assets", 1611 "//v8:v8_external_startup_data_assets",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 if (is_android) { 1700 if (is_android) {
1700 deps += [ "//testing/android/native_test:native_test_native_code" ] 1701 deps += [ "//testing/android/native_test:native_test_native_code" ]
1701 } 1702 }
1702 } 1703 }
1703 1704
1704 group("fuzzers") { 1705 group("fuzzers") {
1705 deps = [ 1706 deps = [
1706 "//content/test/fuzzer", 1707 "//content/test/fuzzer",
1707 ] 1708 ]
1708 } 1709 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698