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

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: Typo in a chrome/test/BUILD.gn 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 1436 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 chrome_tests_unit_gypi_values.chrome_unit_tests_session_service_so urces, 1447 chrome_tests_unit_gypi_values.chrome_unit_tests_session_service_so urces,
1448 ".", 1448 ".",
1449 "//chrome") 1449 "//chrome")
1450 } 1450 }
1451 if (enable_media_router) { 1451 if (enable_media_router) {
1452 sources += rebase_path( 1452 sources += rebase_path(
1453 chrome_tests_unit_gypi_values.chrome_unit_tests_media_router_sourc es, 1453 chrome_tests_unit_gypi_values.chrome_unit_tests_media_router_sourc es,
1454 ".", 1454 ".",
1455 "//chrome") 1455 "//chrome")
1456 deps += [ "//chrome/browser/media/router:test_support" ] 1456 deps += [ "//chrome/browser/media/router:test_support" ]
1457 if (!is_android) {
1458 sources += rebase_path(
1459 chrome_tests_unit_gypi_values.chrome_unit_tests_media_router_non _android_sources,
1460 ".",
1461 "//chrome")
1462 }
1457 if (!toolkit_views) { 1463 if (!toolkit_views) {
1458 sources -= [ "../browser/ui/views/media_router/media_router_ui_browserte st.cc" ] 1464 sources -= [ "../browser/ui/views/media_router/media_router_ui_browserte st.cc" ]
1459 } 1465 }
1460 } 1466 }
1461 if (enable_webrtc) { 1467 if (enable_webrtc) {
1462 sources += rebase_path( 1468 sources += rebase_path(
1463 chrome_tests_unit_gypi_values.chrome_unit_tests_webrtc_sources, 1469 chrome_tests_unit_gypi_values.chrome_unit_tests_webrtc_sources,
1464 ".", 1470 ".",
1465 "//chrome") 1471 "//chrome")
1466 } 1472 }
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
1759 "//third_party/mojo/src/mojo/edk/system", 1765 "//third_party/mojo/src/mojo/edk/system",
1760 ] 1766 ]
1761 1767
1762 if (!is_android && use_ash) { 1768 if (!is_android && use_ash) {
1763 sources += rebase_path( 1769 sources += rebase_path(
1764 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, 1770 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources,
1765 ".", 1771 ".",
1766 "//chrome") 1772 "//chrome")
1767 } 1773 }
1768 } 1774 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698