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

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

Issue 2726223004: Introduce networking.cast API (Closed)
Patch Set: histograms Created 3 years, 9 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/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2585 matching lines...) Expand 10 before | Expand all | Expand 10 after
2596 ] 2596 ]
2597 } 2597 }
2598 if (is_mac || is_win || (is_linux && !is_chromeos)) { 2598 if (is_mac || is_win || (is_linux && !is_chromeos)) {
2599 sources += [ 2599 sources += [
2600 # Tests for non mobile and non CrOS (includes Linux, Win, Mac). 2600 # Tests for non mobile and non CrOS (includes Linux, Win, Mac).
2601 "../browser/metrics/desktop_session_duration/audible_contents_tracker_br owsertest.cc", 2601 "../browser/metrics/desktop_session_duration/audible_contents_tracker_br owsertest.cc",
2602 "../browser/metrics/desktop_session_duration/chrome_visibility_observer_ browsertest.cc", 2602 "../browser/metrics/desktop_session_duration/chrome_visibility_observer_ browsertest.cc",
2603 "../browser/profiles/profile_statistics_browsertest.cc", 2603 "../browser/profiles/profile_statistics_browsertest.cc",
2604 ] 2604 ]
2605 } 2605 }
2606 if (is_mac || is_win || is_chromeos) {
2607 sources += [ "../browser/extensions/api/networking_cast_private/networking _cast_private_apitest.cc" ]
2608 }
2606 if (enable_app_list) { 2609 if (enable_app_list) {
2607 sources += [ 2610 sources += [
2608 "../browser/apps/drive/drive_app_converter_browsertest.cc", 2611 "../browser/apps/drive/drive_app_converter_browsertest.cc",
2609 "../browser/apps/drive/drive_app_provider_browsertest.cc", 2612 "../browser/apps/drive/drive_app_provider_browsertest.cc",
2610 "../browser/ui/app_list/app_list_controller_browsertest.cc", 2613 "../browser/ui/app_list/app_list_controller_browsertest.cc",
2611 "../browser/ui/app_list/app_list_service_impl_browsertest.cc", 2614 "../browser/ui/app_list/app_list_service_impl_browsertest.cc",
2612 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ", 2615 "../browser/ui/app_list/search/webstore/webstore_provider_browsertest.cc ",
2613 "../browser/ui/app_list/speech_recognizer_browsertest.cc", 2616 "../browser/ui/app_list/speech_recognizer_browsertest.cc",
2614 ] 2617 ]
2615 } 2618 }
(...skipping 2571 matching lines...) Expand 10 before | Expand all | Expand 10 after
5187 } 5190 }
5188 5191
5189 if (is_win) { 5192 if (is_win) {
5190 loadable_module("conflicts_dll") { 5193 loadable_module("conflicts_dll") {
5191 testonly = true 5194 testonly = true
5192 sources = [ 5195 sources = [
5193 "conflicts/conflicts_dll.cc", 5196 "conflicts/conflicts_dll.cc",
5194 ] 5197 ]
5195 } 5198 }
5196 } 5199 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698