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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 "image_loader.cc", | 458 "image_loader.cc", |
459 "image_loader.h", | 459 "image_loader.h", |
460 "image_loader_factory.cc", | 460 "image_loader_factory.cc", |
461 "image_loader_factory.h", | 461 "image_loader_factory.h", |
462 "info_map.cc", | 462 "info_map.cc", |
463 "info_map.h", | 463 "info_map.h", |
464 "install/crx_installer_error.h", | 464 "install/crx_installer_error.h", |
465 "install/extension_install_ui.cc", | 465 "install/extension_install_ui.cc", |
466 "install/extension_install_ui.h", | 466 "install/extension_install_ui.h", |
467 "install_flag.h", | 467 "install_flag.h", |
| 468 "io_thread_extension_message_filter.cc", |
| 469 "io_thread_extension_message_filter.h", |
468 "lazy_background_task_queue.cc", | 470 "lazy_background_task_queue.cc", |
469 "lazy_background_task_queue.h", | 471 "lazy_background_task_queue.h", |
470 "management_policy.cc", | 472 "management_policy.cc", |
471 "management_policy.h", | 473 "management_policy.h", |
472 "mojo/keep_alive_impl.cc", | 474 "mojo/keep_alive_impl.cc", |
473 "mojo/keep_alive_impl.h", | 475 "mojo/keep_alive_impl.h", |
474 "mojo/service_registration_manager.cc", | 476 "mojo/service_registration_manager.cc", |
475 "mojo/service_registration_manager.h", | 477 "mojo/service_registration_manager.h", |
476 "mojo/stash_backend.cc", | 478 "mojo/stash_backend.cc", |
477 "mojo/stash_backend.h", | 479 "mojo/stash_backend.h", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
612 "api/networking_private/networking_private_service_client.cc", | 614 "api/networking_private/networking_private_service_client.cc", |
613 "api/networking_private/networking_private_service_client.h", | 615 "api/networking_private/networking_private_service_client.h", |
614 ] | 616 ] |
615 } | 617 } |
616 } | 618 } |
617 | 619 |
618 if (is_win) { | 620 if (is_win) { |
619 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 621 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
620 } | 622 } |
621 } | 623 } |
OLD | NEW |