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

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

Issue 2840103002: Add new API function: feedbackPrivate.readLogSource (Closed)
Patch Set: Add API unit test; create CrOS-specific test module; minor fixes/refactors 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 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 "//ui/keyboard:resources", 1152 "//ui/keyboard:resources",
1153 ] 1153 ]
1154 1154
1155 if (enable_nacl) { 1155 if (enable_nacl) {
1156 data_deps += [ 1156 data_deps += [
1157 "//components/nacl/loader:nacl_helper", 1157 "//components/nacl/loader:nacl_helper",
1158 "//ppapi/native_client:irt", 1158 "//ppapi/native_client:irt",
1159 ] 1159 ]
1160 } 1160 }
1161 1161
1162 sources += [ "../browser/extensions/api/feedback_private/feedback_private_ch romeos_apitest.cc" ]
1163
1162 deps += [ "//chrome/browser/chromeos:test_support" ] 1164 deps += [ "//chrome/browser/chromeos:test_support" ]
1163 } 1165 }
1164 1166
1165 # TODO(jbudorick): In progress. See crbug.com/611756 1167 # TODO(jbudorick): In progress. See crbug.com/611756
1166 if (is_android) { 1168 if (is_android) {
1167 deps += [ 1169 deps += [
1168 "//chrome/android:app_hooks_java", 1170 "//chrome/android:app_hooks_java",
1169 "//chrome/android:chrome_java", 1171 "//chrome/android:chrome_java",
1170 "//v8:v8_external_startup_data_assets", 1172 "//v8:v8_external_startup_data_assets",
1171 ] 1173 ]
(...skipping 2932 matching lines...) Expand 10 before | Expand all | Expand 10 after
4104 # target. 4106 # target.
4105 "//tools/json_schema_compiler/test:unit_tests", 4107 "//tools/json_schema_compiler/test:unit_tests",
4106 ] 4108 ]
4107 if (enable_service_discovery) { 4109 if (enable_service_discovery) {
4108 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ] 4110 sources += [ "../browser/extensions/api/mdns/mdns_api_unittest.cc" ]
4109 } 4111 }
4110 if (is_win) { 4112 if (is_win) {
4111 sources += 4113 sources +=
4112 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ] 4114 [ "../browser/extensions/external_registry_loader_win_unittest.cc" ]
4113 } 4115 }
4114 if (!is_chromeos) { 4116 if (is_chromeos) {
4117 sources += [
4118 "../browser/extensions/api/feedback_private/feedback_private_api_unittes t.cc",
4119 "../browser/extensions/api/feedback_private/log_source_access_manager_un ittest.cc",
4120 ]
4121 } else {
4115 sources += [ 4122 sources += [
4116 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc", 4123 "../browser/extensions/api/messaging/native_message_process_host_unittes t.cc",
4117 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc", 4124 "../browser/extensions/api/messaging/native_messaging_host_manifest_unit test.cc",
4118 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc", 4125 "../browser/extensions/api/messaging/native_messaging_policy_handler_uni ttest.cc",
4119 ] 4126 ]
4120 } 4127 }
4121 } 4128 }
4122 if (use_ash) { 4129 if (use_ash) {
4123 sources += [ 4130 sources += [
4124 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc", 4131 "../browser/media/webrtc/desktop_media_list_ash_unittest.cc",
(...skipping 1001 matching lines...) Expand 10 before | Expand all | Expand 10 after
5126 } 5133 }
5127 5134
5128 if (is_win) { 5135 if (is_win) {
5129 loadable_module("conflicts_dll") { 5136 loadable_module("conflicts_dll") {
5130 testonly = true 5137 testonly = true
5131 sources = [ 5138 sources = [
5132 "conflicts/conflicts_dll.cc", 5139 "conflicts/conflicts_dll.cc",
5133 ] 5140 ]
5134 } 5141 }
5135 } 5142 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698