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

Side by Side Diff: components/offline_pages/BUILD.gn

Issue 1904613005: [Offline pages] Removing bookmarks dependency from offline pages component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit tests compilation Created 4 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 | « components/offline_pages.gypi ('k') | components/offline_pages/DEPS » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 } 7 }
8 8
9 # GYP: //components/offline_pages.gypi:offline_pages 9 # GYP: //components/offline_pages.gypi:offline_pages
10 static_library("offline_pages") { 10 static_library("offline_pages") {
11 sources = [ 11 sources = [
12 "offline_page_archiver.h", 12 "offline_page_archiver.h",
13 "offline_page_bookmark_bridge.cc",
14 "offline_page_bookmark_bridge.h",
15 "offline_page_item.cc", 13 "offline_page_item.cc",
16 "offline_page_item.h", 14 "offline_page_item.h",
17 "offline_page_metadata_store.cc", 15 "offline_page_metadata_store.cc",
18 "offline_page_metadata_store.h", 16 "offline_page_metadata_store.h",
19 "offline_page_metadata_store_impl.cc", 17 "offline_page_metadata_store_impl.cc",
20 "offline_page_metadata_store_impl.h", 18 "offline_page_metadata_store_impl.h",
21 "offline_page_model.cc", 19 "offline_page_model.cc",
22 "offline_page_model.h", 20 "offline_page_model.h",
23 ] 21 ]
24 22
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 "offline_page_metadata_store_impl_unittest.cc", 71 "offline_page_metadata_store_impl_unittest.cc",
74 "offline_page_model_unittest.cc", 72 "offline_page_model_unittest.cc",
75 ] 73 ]
76 74
77 deps = [ 75 deps = [
78 ":offline_pages", 76 ":offline_pages",
79 ":switches", 77 ":switches",
80 ":test_support", 78 ":test_support",
81 "//base", 79 "//base",
82 "//base/test:test_support", 80 "//base/test:test_support",
83 "//components/bookmarks/browser",
84 "//components/bookmarks/test",
85 "//components/leveldb_proto", 81 "//components/leveldb_proto",
86 "//components/offline_pages/proto:offline_pages_proto", 82 "//components/offline_pages/proto:offline_pages_proto",
87 "//testing/gtest", 83 "//testing/gtest",
88 "//url", 84 "//url",
89 ] 85 ]
90 } 86 }
91 87
92 if (is_android) { 88 if (is_android) {
93 java_cpp_enum("offline_page_feature_enums_java") { 89 java_cpp_enum("offline_page_feature_enums_java") {
94 sources = [ 90 sources = [
95 "offline_page_feature.h", 91 "offline_page_feature.h",
96 ] 92 ]
97 } 93 }
98 94
99 java_cpp_enum("offline_page_model_enums_java") { 95 java_cpp_enum("offline_page_model_enums_java") {
100 sources = [ 96 sources = [
101 "offline_page_model.h", 97 "offline_page_model.h",
102 ] 98 ]
103 } 99 }
104 } 100 }
OLDNEW
« no previous file with comments | « components/offline_pages.gypi ('k') | components/offline_pages/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698