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

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

Issue 2840103002: Add new API function: feedbackPrivate.readLogSource (Closed)
Patch Set: Responded to comments from Patch Set 14 Created 3 years, 6 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 4106 matching lines...) Expand 10 before | Expand all | Expand 10 after
4117 # target. 4117 # target.
4118 "//tools/json_schema_compiler/test:unit_tests", 4118 "//tools/json_schema_compiler/test:unit_tests",
4119 ] 4119 ]
4120 if (enable_service_discovery) { 4120 if (enable_service_discovery) {
4121 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ] 4121 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ]
4122 } 4122 }
4123 if (is_win) { 4123 if (is_win) {
4124 sources += 4124 sources +=
4125 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ] 4125 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ]
4126 } 4126 }
4127 if (!is_chromeos) { 4127 if (is_chromeos) {
4128 sources += [ "../browser/extensions/api/feedback_private/feedback_private_ api_chromeos_unittest.cc" ]
tbarzic 2017/06/07 17:58:39 I think you can move this to line 3953 (under if (
Simon Que 2017/06/07 18:25:59 Done.
4129 } else {
4128 sources += [ 4130 sources += [
4129 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc", 4131 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc",
4130 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc", 4132 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc",
4131 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc", 4133 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc",
4132 ] 4134 ]
4133 } 4135 }
4134 } 4136 }
4135 if (use_ash) { 4137 if (use_ash) {
4136 sources += [ 4138 sources += [
4137 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc", 4139 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc",
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
5141 } 5143 }
5142 5144
5143 if (is_win) { 5145 if (is_win) {
5144 loadable_module("conflicts_dll") { 5146 loadable_module("conflicts_dll") {
5145 testonly = true 5147 testonly = true
5146 sources = [ 5148 sources = [
5147 "conflicts/conflicts_dll.cc", 5149 "conflicts/conflicts_dll.cc",
5148 ] 5150 ]
5149 } 5151 }
5150 } 5152 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698