OLD | NEW |
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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 import("//tools/grit/repack.gni") | 6 import("//tools/grit/repack.gni") |
7 | 7 |
8 # GYP version: extensions/extensions_resources.gyp:extensions_resources | 8 # GYP version: extensions/extensions_resources.gyp:extensions_resources |
9 group("extensions_resources") { | 9 group("extensions_resources") { |
10 deps = [ | 10 deps = [ |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "common/event_filter_unittest.cc", | 203 "common/event_filter_unittest.cc", |
204 "common/extension_l10n_util_unittest.cc", | 204 "common/extension_l10n_util_unittest.cc", |
205 "common/extension_resource_unittest.cc", | 205 "common/extension_resource_unittest.cc", |
206 "common/extension_set_unittest.cc", | 206 "common/extension_set_unittest.cc", |
207 "common/file_util_unittest.cc", | 207 "common/file_util_unittest.cc", |
208 "common/manifest_handler_unittest.cc", | 208 "common/manifest_handler_unittest.cc", |
209 "common/manifest_handlers/shared_module_manifest_unittest.cc", | 209 "common/manifest_handlers/shared_module_manifest_unittest.cc", |
210 "common/message_bundle_unittest.cc", | 210 "common/message_bundle_unittest.cc", |
211 "common/one_shot_event_unittest.cc", | 211 "common/one_shot_event_unittest.cc", |
212 "common/permissions/manifest_permission_set_unittest.cc", | 212 "common/permissions/manifest_permission_set_unittest.cc", |
| 213 "common/stack_frame_unittest.cc", |
213 "common/url_pattern_set_unittest.cc", | 214 "common/url_pattern_set_unittest.cc", |
214 "common/url_pattern_unittest.cc", | 215 "common/url_pattern_unittest.cc", |
215 "common/user_script_unittest.cc", | 216 "common/user_script_unittest.cc", |
216 "renderer/activity_log_converter_strategy_unittest.cc", | 217 "renderer/activity_log_converter_strategy_unittest.cc", |
217 "renderer/api/serial/data_receiver_unittest.cc", | 218 "renderer/api/serial/data_receiver_unittest.cc", |
218 "renderer/api/serial/data_sender_unittest.cc", | 219 "renderer/api/serial/data_sender_unittest.cc", |
219 "renderer/api/serial/serial_api_unittest.cc", | 220 "renderer/api/serial/serial_api_unittest.cc", |
220 "renderer/api_test_base.cc", | 221 "renderer/api_test_base.cc", |
221 "renderer/api_test_base.h", | 222 "renderer/api_test_base.h", |
222 "renderer/api_test_base_unittest.cc", | 223 "renderer/api_test_base_unittest.cc", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 "//third_party/leveldatabase", | 256 "//third_party/leveldatabase", |
256 ] | 257 ] |
257 | 258 |
258 if (is_win) { | 259 if (is_win) { |
259 deps += [ | 260 deps += [ |
260 "//base/allocator", | 261 "//base/allocator", |
261 ] | 262 ] |
262 } | 263 } |
263 } | 264 } |
264 } | 265 } |
OLD | NEW |