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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 "extension_function_registry.h", | 303 "extension_function_registry.h", |
304 "extension_function_util.cc", | 304 "extension_function_util.cc", |
305 "extension_function_util.h", | 305 "extension_function_util.h", |
306 "extension_host.cc", | 306 "extension_host.cc", |
307 "extension_host.h", | 307 "extension_host.h", |
308 "extension_host_delegate.h", | 308 "extension_host_delegate.h", |
309 "extension_icon_image.cc", | 309 "extension_icon_image.cc", |
310 "extension_icon_image.h", | 310 "extension_icon_image.h", |
311 "extension_message_filter.cc", | 311 "extension_message_filter.cc", |
312 "extension_message_filter.h", | 312 "extension_message_filter.h", |
313 "extension_network_delegate.cc", | |
314 "extension_network_delegate.h", | |
315 "extension_pref_store.cc", | 313 "extension_pref_store.cc", |
316 "extension_pref_store.h", | 314 "extension_pref_store.h", |
317 "extension_pref_value_map.cc", | 315 "extension_pref_value_map.cc", |
318 "extension_pref_value_map.h", | 316 "extension_pref_value_map.h", |
319 "extension_pref_value_map_factory.cc", | 317 "extension_pref_value_map_factory.cc", |
320 "extension_pref_value_map_factory.h", | 318 "extension_pref_value_map_factory.h", |
321 "extension_prefs.cc", | 319 "extension_prefs.cc", |
322 "extension_prefs.h", | 320 "extension_prefs.h", |
323 "extension_prefs_factory.cc", | 321 "extension_prefs_factory.cc", |
324 "extension_prefs_factory.h", | 322 "extension_prefs_factory.h", |
325 "extension_prefs_observer.h", | 323 "extension_prefs_observer.h", |
326 "extension_prefs_scope.h", | 324 "extension_prefs_scope.h", |
327 "extension_protocols.cc", | 325 "extension_protocols.cc", |
328 "extension_protocols.h", | 326 "extension_protocols.h", |
329 "extension_registry.cc", | 327 "extension_registry.cc", |
330 "extension_registry.h", | 328 "extension_registry.h", |
331 "extension_registry_factory.cc", | 329 "extension_registry_factory.cc", |
332 "extension_registry_factory.h", | 330 "extension_registry_factory.h", |
333 "extension_registry_observer.h", | 331 "extension_registry_observer.h", |
334 "extension_scoped_prefs.h", | 332 "extension_scoped_prefs.h", |
335 "extension_system.cc", | 333 "extension_system.cc", |
336 "extension_system.h", | 334 "extension_system.h", |
337 "extension_system_provider.cc", | 335 "extension_system_provider.cc", |
338 "extension_system_provider.h", | 336 "extension_system_provider.h", |
339 "extension_url_request_context_getter.cc", | |
340 "extension_url_request_context_getter.h", | |
341 "extension_util.cc", | 337 "extension_util.cc", |
342 "extension_util.h", | 338 "extension_util.h", |
343 "extension_web_contents_observer.cc", | 339 "extension_web_contents_observer.cc", |
344 "extension_web_contents_observer.h", | 340 "extension_web_contents_observer.h", |
345 "extensions_browser_client.cc", | 341 "extensions_browser_client.cc", |
346 "extensions_browser_client.h", | 342 "extensions_browser_client.h", |
347 "external_provider_interface.h", | 343 "external_provider_interface.h", |
348 "file_highlighter.cc", | 344 "file_highlighter.cc", |
349 "file_highlighter.h", | 345 "file_highlighter.h", |
350 "file_reader.cc", | 346 "file_reader.cc", |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 ] | 475 ] |
480 } | 476 } |
481 } | 477 } |
482 | 478 |
483 if (is_win) { | 479 if (is_win) { |
484 cflags = [ | 480 cflags = [ |
485 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 481 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
486 ] | 482 ] |
487 } | 483 } |
488 } | 484 } |
OLD | NEW |