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

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

Issue 1228863005: [MediaRouter] The minimal change to make everything build on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved MRDC::GetOrCreateForWebContents to its own .cc file Created 5 years, 5 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("//chrome/chrome_tests.gni") 9 import("//chrome/chrome_tests.gni")
10 import("//chrome/test/base/js2gtest.gni") 10 import("//chrome/test/base/js2gtest.gni")
(...skipping 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after
1448 chrome_tests_unit_gypi_values.chrome_unit_tests_session_service_so urces, 1448 chrome_tests_unit_gypi_values.chrome_unit_tests_session_service_so urces,
1449 ".", 1449 ".",
1450 "//chrome") 1450 "//chrome")
1451 } 1451 }
1452 if (enable_media_router) { 1452 if (enable_media_router) {
1453 sources += rebase_path( 1453 sources += rebase_path(
1454 chrome_tests_unit_gypi_values.chrome_unit_tests_media_router_sourc es, 1454 chrome_tests_unit_gypi_values.chrome_unit_tests_media_router_sourc es,
1455 ".", 1455 ".",
1456 "//chrome") 1456 "//chrome")
1457 deps += [ "//chrome/browser/media/router:test_support" ] 1457 deps += [ "//chrome/browser/media/router:test_support" ]
1458 if (!is_android) {
1459 sources += rebase_path(
1460 chrome_tests_unit_gypi_values.chrome_unit_tests_media_router_non _android_sources,
1461 ".",
1462 "//chrome")
1463 }
1458 if (!toolkit_views) { 1464 if (!toolkit_views) {
1459 sources -= [ "../browser/ui/views/media_router/media_router_ui_browserte st.cc" ] 1465 sources -= [ "../browser/ui/views/media_router/media_router_ui_browserte st.cc" ]
1460 } 1466 }
1461 } 1467 }
1462 if (enable_webrtc) { 1468 if (enable_webrtc) {
1463 sources += rebase_path( 1469 sources += rebase_path(
1464 chrome_tests_unit_gypi_values.chrome_unit_tests_webrtc_sources, 1470 chrome_tests_unit_gypi_values.chrome_unit_tests_webrtc_sources,
1465 ".", 1471 ".",
1466 "//chrome") 1472 "//chrome")
1467 } 1473 }
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
1760 "//third_party/mojo/src/mojo/edk/system", 1766 "//third_party/mojo/src/mojo/edk/system",
1761 ] 1767 ]
1762 1768
1763 if (!is_android && use_ash) { 1769 if (!is_android && use_ash) {
1764 sources += rebase_path( 1770 sources += rebase_path(
1765 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, 1771 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources,
1766 ".", 1772 ".",
1767 "//chrome") 1773 "//chrome")
1768 } 1774 }
1769 } 1775 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698