| 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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 "histogram_internals_request_job.h", | 637 "histogram_internals_request_job.h", |
| 638 "histogram_message_filter.cc", | 638 "histogram_message_filter.cc", |
| 639 "histogram_message_filter.h", | 639 "histogram_message_filter.h", |
| 640 "histogram_subscriber.h", | 640 "histogram_subscriber.h", |
| 641 "histogram_synchronizer.cc", | 641 "histogram_synchronizer.cc", |
| 642 "histogram_synchronizer.h", | 642 "histogram_synchronizer.h", |
| 643 "host_zoom_level_context.cc", | 643 "host_zoom_level_context.cc", |
| 644 "host_zoom_level_context.h", | 644 "host_zoom_level_context.h", |
| 645 "host_zoom_map_impl.cc", | 645 "host_zoom_map_impl.cc", |
| 646 "host_zoom_map_impl.h", | 646 "host_zoom_map_impl.h", |
| 647 "indexed_db/database_impl.cc", |
| 648 "indexed_db/database_impl.h", |
| 647 "indexed_db/indexed_db.h", | 649 "indexed_db/indexed_db.h", |
| 648 "indexed_db/indexed_db_active_blob_registry.cc", | 650 "indexed_db/indexed_db_active_blob_registry.cc", |
| 649 "indexed_db/indexed_db_active_blob_registry.h", | 651 "indexed_db/indexed_db_active_blob_registry.h", |
| 650 "indexed_db/indexed_db_backing_store.cc", | 652 "indexed_db/indexed_db_backing_store.cc", |
| 651 "indexed_db/indexed_db_backing_store.h", | 653 "indexed_db/indexed_db_backing_store.h", |
| 652 "indexed_db/indexed_db_blob_info.cc", | 654 "indexed_db/indexed_db_blob_info.cc", |
| 653 "indexed_db/indexed_db_blob_info.h", | 655 "indexed_db/indexed_db_blob_info.h", |
| 654 "indexed_db/indexed_db_callbacks.cc", | 656 "indexed_db/indexed_db_callbacks.cc", |
| 655 "indexed_db/indexed_db_callbacks.h", | 657 "indexed_db/indexed_db_callbacks.h", |
| 656 "indexed_db/indexed_db_class_factory.cc", | 658 "indexed_db/indexed_db_class_factory.cc", |
| (...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1943 if (!is_component_build) { | 1945 if (!is_component_build) { |
| 1944 public_deps = [ | 1946 public_deps = [ |
| 1945 ":browser", | 1947 ":browser", |
| 1946 ] | 1948 ] |
| 1947 } else { | 1949 } else { |
| 1948 public_deps = [ | 1950 public_deps = [ |
| 1949 "//third_party/leveldatabase", | 1951 "//third_party/leveldatabase", |
| 1950 ] | 1952 ] |
| 1951 } | 1953 } |
| 1952 } | 1954 } |
| OLD | NEW |