| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/WebKit/public/public_features.gni") | 10 import("//third_party/WebKit/public/public_features.gni") |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 "cache_storage/cache_storage_manager.h", | 402 "cache_storage/cache_storage_manager.h", |
| 403 "cache_storage/cache_storage_operation.cc", | 403 "cache_storage/cache_storage_operation.cc", |
| 404 "cache_storage/cache_storage_operation.h", | 404 "cache_storage/cache_storage_operation.h", |
| 405 "cache_storage/cache_storage_quota_client.cc", | 405 "cache_storage/cache_storage_quota_client.cc", |
| 406 "cache_storage/cache_storage_quota_client.h", | 406 "cache_storage/cache_storage_quota_client.h", |
| 407 "cache_storage/cache_storage_scheduler.cc", | 407 "cache_storage/cache_storage_scheduler.cc", |
| 408 "cache_storage/cache_storage_scheduler.h", | 408 "cache_storage/cache_storage_scheduler.h", |
| 409 "cache_storage/cache_storage_scheduler_client.h", | 409 "cache_storage/cache_storage_scheduler_client.h", |
| 410 "child_process_launcher.cc", | 410 "child_process_launcher.cc", |
| 411 "child_process_launcher.h", | 411 "child_process_launcher.h", |
| 412 "child_process_launcher_helper.cc", |
| 413 "child_process_launcher_helper.h", |
| 414 "child_process_launcher_helper_android.cc", |
| 415 "child_process_launcher_helper_linux.cc", |
| 416 "child_process_launcher_helper_mac.cc", |
| 417 "child_process_launcher_helper_posix.cc", |
| 418 "child_process_launcher_helper_posix.h", |
| 419 "child_process_launcher_helper_win.cc", |
| 412 "child_process_security_policy_impl.cc", | 420 "child_process_security_policy_impl.cc", |
| 413 "child_process_security_policy_impl.h", | 421 "child_process_security_policy_impl.h", |
| 414 "cocoa/system_hotkey_helper_mac.h", | 422 "cocoa/system_hotkey_helper_mac.h", |
| 415 "cocoa/system_hotkey_helper_mac.mm", | 423 "cocoa/system_hotkey_helper_mac.mm", |
| 416 "cocoa/system_hotkey_map.h", | 424 "cocoa/system_hotkey_map.h", |
| 417 "cocoa/system_hotkey_map.mm", | 425 "cocoa/system_hotkey_map.mm", |
| 418 | 426 |
| 419 # NOTE: These files are here instead of in compositor_browser_sources | 427 # NOTE: These files are here instead of in compositor_browser_sources |
| 420 # because the latter is not built on Android, whereas these files are | 428 # because the latter is not built on Android, whereas these files are |
| 421 # needed on all platforms. | 429 # needed on all platforms. |
| (...skipping 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2005 if (!is_component_build) { | 2013 if (!is_component_build) { |
| 2006 public_deps = [ | 2014 public_deps = [ |
| 2007 ":browser", | 2015 ":browser", |
| 2008 ] | 2016 ] |
| 2009 } else { | 2017 } else { |
| 2010 public_deps = [ | 2018 public_deps = [ |
| 2011 "//third_party/leveldatabase", | 2019 "//third_party/leveldatabase", |
| 2012 ] | 2020 ] |
| 2013 } | 2021 } |
| 2014 } | 2022 } |
| OLD | NEW |