| 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("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 "indexed_db/indexed_db_dispatcher_host.h", | 701 "indexed_db/indexed_db_dispatcher_host.h", |
| 702 "indexed_db/indexed_db_factory.h", | 702 "indexed_db/indexed_db_factory.h", |
| 703 "indexed_db/indexed_db_factory_impl.cc", | 703 "indexed_db/indexed_db_factory_impl.cc", |
| 704 "indexed_db/indexed_db_factory_impl.h", | 704 "indexed_db/indexed_db_factory_impl.h", |
| 705 "indexed_db/indexed_db_index_writer.cc", | 705 "indexed_db/indexed_db_index_writer.cc", |
| 706 "indexed_db/indexed_db_index_writer.h", | 706 "indexed_db/indexed_db_index_writer.h", |
| 707 "indexed_db/indexed_db_internals_ui.cc", | 707 "indexed_db/indexed_db_internals_ui.cc", |
| 708 "indexed_db/indexed_db_internals_ui.h", | 708 "indexed_db/indexed_db_internals_ui.h", |
| 709 "indexed_db/indexed_db_leveldb_coding.cc", | 709 "indexed_db/indexed_db_leveldb_coding.cc", |
| 710 "indexed_db/indexed_db_leveldb_coding.h", | 710 "indexed_db/indexed_db_leveldb_coding.h", |
| 711 "indexed_db/indexed_db_observation.cc", | |
| 712 "indexed_db/indexed_db_observation.h", | |
| 713 "indexed_db/indexed_db_observer.cc", | 711 "indexed_db/indexed_db_observer.cc", |
| 714 "indexed_db/indexed_db_observer.h", | 712 "indexed_db/indexed_db_observer.h", |
| 715 "indexed_db/indexed_db_observer_changes.cc", | |
| 716 "indexed_db/indexed_db_observer_changes.h", | |
| 717 "indexed_db/indexed_db_pending_connection.cc", | 713 "indexed_db/indexed_db_pending_connection.cc", |
| 718 "indexed_db/indexed_db_pending_connection.h", | 714 "indexed_db/indexed_db_pending_connection.h", |
| 719 "indexed_db/indexed_db_quota_client.cc", | 715 "indexed_db/indexed_db_quota_client.cc", |
| 720 "indexed_db/indexed_db_quota_client.h", | 716 "indexed_db/indexed_db_quota_client.h", |
| 721 "indexed_db/indexed_db_return_value.h", | 717 "indexed_db/indexed_db_return_value.h", |
| 722 "indexed_db/indexed_db_transaction.cc", | 718 "indexed_db/indexed_db_transaction.cc", |
| 723 "indexed_db/indexed_db_transaction.h", | 719 "indexed_db/indexed_db_transaction.h", |
| 724 "indexed_db/indexed_db_transaction_coordinator.cc", | 720 "indexed_db/indexed_db_transaction_coordinator.cc", |
| 725 "indexed_db/indexed_db_transaction_coordinator.h", | 721 "indexed_db/indexed_db_transaction_coordinator.h", |
| 726 "indexed_db/indexed_db_value.cc", | 722 "indexed_db/indexed_db_value.cc", |
| (...skipping 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1973 if (!is_component_build) { | 1969 if (!is_component_build) { |
| 1974 public_deps = [ | 1970 public_deps = [ |
| 1975 ":browser", | 1971 ":browser", |
| 1976 ] | 1972 ] |
| 1977 } else { | 1973 } else { |
| 1978 public_deps = [ | 1974 public_deps = [ |
| 1979 "//third_party/leveldatabase", | 1975 "//third_party/leveldatabase", |
| 1980 ] | 1976 ] |
| 1981 } | 1977 } |
| 1982 } | 1978 } |
| OLD | NEW |