Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(564)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2802053002: precache: Extract common methods for PrecacheManifest into util. (Closed)
Patch Set: Copyright. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/predictors/resource_prefetch_predictor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1496 "//components/password_manager/content/browser", 1496 "//components/password_manager/content/browser",
1497 "//components/password_manager/core/browser", 1497 "//components/password_manager/core/browser",
1498 "//components/password_manager/core/common", 1498 "//components/password_manager/core/common",
1499 "//components/password_manager/sync/browser", 1499 "//components/password_manager/sync/browser",
1500 "//components/payments/content:mojom", 1500 "//components/payments/content:mojom",
1501 "//components/payments/content:mojom_payment_app", 1501 "//components/payments/content:mojom_payment_app",
1502 "//components/physical_web/eddystone", 1502 "//components/physical_web/eddystone",
1503 "//components/policy:generated", 1503 "//components/policy:generated",
1504 "//components/policy/core/browser", 1504 "//components/policy/core/browser",
1505 "//components/policy/proto", 1505 "//components/policy/proto",
1506 "//components/precache/core:proto", 1506 "//components/precache/core",
1507 "//components/prefs:prefs", 1507 "//components/prefs:prefs",
1508 "//components/previews/core", 1508 "//components/previews/core",
1509 "//components/profile_metrics", 1509 "//components/profile_metrics",
1510 "//components/proxy_config", 1510 "//components/proxy_config",
1511 "//components/query_parser", 1511 "//components/query_parser",
1512 "//components/rappor", 1512 "//components/rappor",
1513 "//components/rappor:rappor_recorder", 1513 "//components/rappor:rappor_recorder",
1514 "//components/renderer_context_menu", 1514 "//components/renderer_context_menu",
1515 "//components/resources", 1515 "//components/resources",
1516 "//components/safe_browsing_db", 1516 "//components/safe_browsing_db",
(...skipping 1605 matching lines...) Expand 10 before | Expand all | Expand 10 after
3122 deps += [ 3122 deps += [
3123 ":client_discourse_context_proto", 3123 ":client_discourse_context_proto",
3124 ":delta_file_proto", 3124 ":delta_file_proto",
3125 ":jni_headers", 3125 ":jni_headers",
3126 "//chrome/browser/android/webapk:proto", 3126 "//chrome/browser/android/webapk:proto",
3127 "//components/cdm/browser", 3127 "//components/cdm/browser",
3128 "//components/data_usage/android", 3128 "//components/data_usage/android",
3129 "//components/feature_engagement_tracker", 3129 "//components/feature_engagement_tracker",
3130 "//components/payments/content/android", 3130 "//components/payments/content/android",
3131 "//components/precache/content", 3131 "//components/precache/content",
3132 "//components/precache/core",
3133 "//components/resources:components_resources", 3132 "//components/resources:components_resources",
3134 "//components/safe_browsing_db", 3133 "//components/safe_browsing_db",
3135 "//components/toolbar", 3134 "//components/toolbar",
3136 "//components/web_contents_delegate_android", 3135 "//components/web_contents_delegate_android",
3137 "//sandbox:sandbox_features", 3136 "//sandbox:sandbox_features",
3138 "//third_party/android_opengl/etc1", 3137 "//third_party/android_opengl/etc1",
3139 "//third_party/android_tools:cpu_features", 3138 "//third_party/android_tools:cpu_features",
3140 "//third_party/libaddressinput:util", 3139 "//third_party/libaddressinput:util",
3141 "//third_party/libphonenumber", 3140 "//third_party/libphonenumber",
3142 "//third_party/smhasher:murmurhash2", 3141 "//third_party/smhasher:murmurhash2",
(...skipping 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after
4636 "media/pepper_cdm_test_constants.cc", 4635 "media/pepper_cdm_test_constants.cc",
4637 "media/pepper_cdm_test_constants.h", 4636 "media/pepper_cdm_test_constants.h",
4638 ] 4637 ]
4639 } 4638 }
4640 } 4639 }
4641 4640
4642 service_manifest("preferences_forwarder_manifest") { 4641 service_manifest("preferences_forwarder_manifest") {
4643 name = "preferences_forwarder" 4642 name = "preferences_forwarder"
4644 source = "prefs/forwarder_manifest.json" 4643 source = "prefs/forwarder_manifest.json"
4645 } 4644 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/predictors/resource_prefetch_predictor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698