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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 "byte_stream.cc", | 363 "byte_stream.cc", |
364 "byte_stream.h", | 364 "byte_stream.h", |
365 "cache_storage/cache_storage.cc", | 365 "cache_storage/cache_storage.cc", |
366 "cache_storage/cache_storage.h", | 366 "cache_storage/cache_storage.h", |
367 "cache_storage/cache_storage_blob_to_disk_cache.cc", | 367 "cache_storage/cache_storage_blob_to_disk_cache.cc", |
368 "cache_storage/cache_storage_blob_to_disk_cache.h", | 368 "cache_storage/cache_storage_blob_to_disk_cache.h", |
369 "cache_storage/cache_storage_cache.cc", | 369 "cache_storage/cache_storage_cache.cc", |
370 "cache_storage/cache_storage_cache.h", | 370 "cache_storage/cache_storage_cache.h", |
371 "cache_storage/cache_storage_cache_handle.cc", | 371 "cache_storage/cache_storage_cache_handle.cc", |
372 "cache_storage/cache_storage_cache_handle.h", | 372 "cache_storage/cache_storage_cache_handle.h", |
| 373 "cache_storage/cache_storage_cache_observer.h", |
373 "cache_storage/cache_storage_context_impl.cc", | 374 "cache_storage/cache_storage_context_impl.cc", |
374 "cache_storage/cache_storage_context_impl.h", | 375 "cache_storage/cache_storage_context_impl.h", |
375 "cache_storage/cache_storage_dispatcher_host.cc", | 376 "cache_storage/cache_storage_dispatcher_host.cc", |
376 "cache_storage/cache_storage_dispatcher_host.h", | 377 "cache_storage/cache_storage_dispatcher_host.h", |
377 "cache_storage/cache_storage_histogram_macros.h", | 378 "cache_storage/cache_storage_histogram_macros.h", |
| 379 "cache_storage/cache_storage_index.cc", |
| 380 "cache_storage/cache_storage_index.h", |
378 "cache_storage/cache_storage_manager.cc", | 381 "cache_storage/cache_storage_manager.cc", |
379 "cache_storage/cache_storage_manager.h", | 382 "cache_storage/cache_storage_manager.h", |
380 "cache_storage/cache_storage_operation.cc", | 383 "cache_storage/cache_storage_operation.cc", |
381 "cache_storage/cache_storage_operation.h", | 384 "cache_storage/cache_storage_operation.h", |
382 "cache_storage/cache_storage_quota_client.cc", | 385 "cache_storage/cache_storage_quota_client.cc", |
383 "cache_storage/cache_storage_quota_client.h", | 386 "cache_storage/cache_storage_quota_client.h", |
384 "cache_storage/cache_storage_scheduler.cc", | 387 "cache_storage/cache_storage_scheduler.cc", |
385 "cache_storage/cache_storage_scheduler.h", | 388 "cache_storage/cache_storage_scheduler.h", |
386 "cache_storage/cache_storage_scheduler_client.h", | 389 "cache_storage/cache_storage_scheduler_client.h", |
387 "child_process_launcher.cc", | 390 "child_process_launcher.cc", |
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1979 if (!is_component_build) { | 1982 if (!is_component_build) { |
1980 public_deps = [ | 1983 public_deps = [ |
1981 ":browser", | 1984 ":browser", |
1982 ] | 1985 ] |
1983 } else { | 1986 } else { |
1984 public_deps = [ | 1987 public_deps = [ |
1985 "//third_party/leveldatabase", | 1988 "//third_party/leveldatabase", |
1986 ] | 1989 ] |
1987 } | 1990 } |
1988 } | 1991 } |
OLD | NEW |