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("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 | 7 |
8 # GYP version: extensions/extensions.gyp:extensions_browser | 8 # GYP version: extensions/extensions.gyp:extensions_browser |
9 source_set("browser") { | 9 source_set("browser") { |
10 sources = [ | 10 sources = [ |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 "extension_function_registry.h", | 299 "extension_function_registry.h", |
300 "extension_function_util.cc", | 300 "extension_function_util.cc", |
301 "extension_function_util.h", | 301 "extension_function_util.h", |
302 "extension_host.cc", | 302 "extension_host.cc", |
303 "extension_host.h", | 303 "extension_host.h", |
304 "extension_host_delegate.h", | 304 "extension_host_delegate.h", |
305 "extension_icon_image.cc", | 305 "extension_icon_image.cc", |
306 "extension_icon_image.h", | 306 "extension_icon_image.h", |
307 "extension_message_filter.cc", | 307 "extension_message_filter.cc", |
308 "extension_message_filter.h", | 308 "extension_message_filter.h", |
309 "extension_network_delegate.cc", | |
310 "extension_network_delegate.h", | |
311 "extension_pref_store.cc", | 309 "extension_pref_store.cc", |
312 "extension_pref_store.h", | 310 "extension_pref_store.h", |
313 "extension_pref_value_map.cc", | 311 "extension_pref_value_map.cc", |
314 "extension_pref_value_map.h", | 312 "extension_pref_value_map.h", |
315 "extension_pref_value_map_factory.cc", | 313 "extension_pref_value_map_factory.cc", |
316 "extension_pref_value_map_factory.h", | 314 "extension_pref_value_map_factory.h", |
317 "extension_prefs.cc", | 315 "extension_prefs.cc", |
318 "extension_prefs.h", | 316 "extension_prefs.h", |
319 "extension_prefs_factory.cc", | 317 "extension_prefs_factory.cc", |
320 "extension_prefs_factory.h", | 318 "extension_prefs_factory.h", |
321 "extension_prefs_observer.h", | 319 "extension_prefs_observer.h", |
322 "extension_prefs_scope.h", | 320 "extension_prefs_scope.h", |
323 "extension_protocols.cc", | 321 "extension_protocols.cc", |
324 "extension_protocols.h", | 322 "extension_protocols.h", |
325 "extension_registry.cc", | 323 "extension_registry.cc", |
326 "extension_registry.h", | 324 "extension_registry.h", |
327 "extension_registry_factory.cc", | 325 "extension_registry_factory.cc", |
328 "extension_registry_factory.h", | 326 "extension_registry_factory.h", |
329 "extension_registry_observer.h", | 327 "extension_registry_observer.h", |
330 "extension_scoped_prefs.h", | 328 "extension_scoped_prefs.h", |
331 "extension_system.cc", | 329 "extension_system.cc", |
332 "extension_system.h", | 330 "extension_system.h", |
333 "extension_system_provider.cc", | 331 "extension_system_provider.cc", |
334 "extension_system_provider.h", | 332 "extension_system_provider.h", |
335 "extension_url_request_context_getter.cc", | |
336 "extension_url_request_context_getter.h", | |
337 "extension_util.cc", | 333 "extension_util.cc", |
338 "extension_util.h", | 334 "extension_util.h", |
339 "extension_web_contents_observer.cc", | 335 "extension_web_contents_observer.cc", |
340 "extension_web_contents_observer.h", | 336 "extension_web_contents_observer.h", |
341 "extensions_browser_client.cc", | 337 "extensions_browser_client.cc", |
342 "extensions_browser_client.h", | 338 "extensions_browser_client.h", |
343 "external_provider_interface.h", | 339 "external_provider_interface.h", |
344 "file_highlighter.cc", | 340 "file_highlighter.cc", |
345 "file_highlighter.h", | 341 "file_highlighter.h", |
346 "file_reader.cc", | 342 "file_reader.cc", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 ] | 469 ] |
474 } | 470 } |
475 } | 471 } |
476 | 472 |
477 if (is_win) { | 473 if (is_win) { |
478 cflags = [ | 474 cflags = [ |
479 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 475 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
480 ] | 476 ] |
481 } | 477 } |
482 } | 478 } |
OLD | NEW |