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