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

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

Issue 2840103002: Add new API function: feedbackPrivate.readLogSource (Closed)
Patch Set: Rebased; updated histogram enum 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 += [
4129 "../browser/extensions/api/feedback_private/feedback_private_api_chromeo s_unittest.cc",
4130 "../browser/extensions/api/feedback_private/log_source_access_manager_un ittest.cc",
4131 ]
4132 } else {
4128 sources += [ 4133 sources += [
4129 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc", 4134 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc",
4130 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc", 4135 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc",
4131 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc", 4136 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc",
4132 ] 4137 ]
4133 } 4138 }
4134 } 4139 }
4135 if (use_ash) { 4140 if (use_ash) {
4136 sources += [ 4141 sources += [
4137 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc", 4142 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc",
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
5141 } 5146 }
5142 5147
5143 if (is_win) { 5148 if (is_win) {
5144 loadable_module("conflicts_dll") { 5149 loadable_module("conflicts_dll") {
5145 testonly = true 5150 testonly = true
5146 sources = [ 5151 sources = [
5147 "conflicts/conflicts_dll.cc", 5152 "conflicts/conflicts_dll.cc",
5148 ] 5153 ]
5149 } 5154 }
5150 } 5155 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698