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

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

Issue 2142983002: Add desktop engagement metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix chromeos build Created 4 years, 4 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("//chrome/chrome_tests.gni") 10 import("//chrome/chrome_tests.gni")
(...skipping 1373 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 sources -= [ "../common/time_format_browsertest.cc" ] 1384 sources -= [ "../common/time_format_browsertest.cc" ]
1385 } 1385 }
1386 if (is_chromeos) { 1386 if (is_chromeos) {
1387 sources += [ 1387 sources += [
1388 "../browser/extensions/api/networking_private/networking_private_apitest .cc", 1388 "../browser/extensions/api/networking_private/networking_private_apitest .cc",
1389 "../browser/extensions/api/networking_private/networking_private_chromeo s_apitest.cc", 1389 "../browser/extensions/api/networking_private/networking_private_chromeo s_apitest.cc",
1390 ] 1390 ]
1391 } 1391 }
1392 if (is_android || is_ios || is_chromeos) { 1392 if (is_android || is_ios || is_chromeos) {
1393 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ] 1393 sources -= [ "../browser/profiles/profile_statistics_browsertest.cc" ]
1394 } else {
1395 sources += rebase_path(
1396 chrome_tests_gypi_values.chrome_browser_tests_non_mobile_non_cros_ sources,
1397 ".",
1398 "//chrome")
1394 } 1399 }
1395 if (enable_app_list) { 1400 if (enable_app_list) {
1396 sources += rebase_path( 1401 sources += rebase_path(
1397 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources, 1402 chrome_tests_gypi_values.chrome_browser_tests_app_list_sources,
1398 ".", 1403 ".",
1399 "//chrome") 1404 "//chrome")
1400 if (is_mac) { 1405 if (is_mac) {
1401 # This assumes the AppList is views-based, but Mac only links 1406 # This assumes the AppList is views-based, but Mac only links
1402 # browser parts for the Cocoa implementation. 1407 # browser parts for the Cocoa implementation.
1403 sources -= 1408 sources -=
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after
2474 if (is_android) { 2479 if (is_android) {
2475 android_library("unit_tests_java") { 2480 android_library("unit_tests_java") {
2476 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2481 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2477 deps = [ 2482 deps = [
2478 "//base:base_java", 2483 "//base:base_java",
2479 "//chrome/android:chrome_java", 2484 "//chrome/android:chrome_java",
2480 "//content/public/android:content_java", 2485 "//content/public/android:content_java",
2481 ] 2486 ]
2482 } 2487 }
2483 } 2488 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698