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 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 "info_map.cc", | 396 "info_map.cc", |
397 "info_map.h", | 397 "info_map.h", |
398 "install/crx_installer_error.h", | 398 "install/crx_installer_error.h", |
399 "install/extension_install_ui.cc", | 399 "install/extension_install_ui.cc", |
400 "install/extension_install_ui.h", | 400 "install/extension_install_ui.h", |
401 "install_flag.h", | 401 "install_flag.h", |
402 "lazy_background_task_queue.cc", | 402 "lazy_background_task_queue.cc", |
403 "lazy_background_task_queue.h", | 403 "lazy_background_task_queue.h", |
404 "management_policy.cc", | 404 "management_policy.cc", |
405 "management_policy.h", | 405 "management_policy.h", |
| 406 "mojo/service_registration_manager.cc", |
| 407 "mojo/service_registration_manager.h", |
406 "pref_names.cc", | 408 "pref_names.cc", |
407 "pref_names.h", | 409 "pref_names.h", |
408 "process_manager.cc", | 410 "process_manager.cc", |
409 "process_manager.h", | 411 "process_manager.h", |
410 "process_manager_delegate.h", | 412 "process_manager_delegate.h", |
411 "process_manager_observer.h", | 413 "process_manager_observer.h", |
412 "process_map.cc", | 414 "process_map.cc", |
413 "process_map.h", | 415 "process_map.h", |
414 "process_map_factory.cc", | 416 "process_map_factory.cc", |
415 "process_map_factory.h", | 417 "process_map_factory.h", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 ] | 490 ] |
489 } | 491 } |
490 } | 492 } |
491 | 493 |
492 if (is_win) { | 494 if (is_win) { |
493 cflags = [ | 495 cflags = [ |
494 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 496 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
495 ] | 497 ] |
496 } | 498 } |
497 } | 499 } |
OLD | NEW |