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

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

Issue 2019333008: [Offline Pages] Fix crash due to table inconsistency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win build Created 4 years, 6 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
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") {
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "offline_page_storage_manager_unittest.cc", 85 "offline_page_storage_manager_unittest.cc",
86 "snapshot_controller_unittest.cc", 86 "snapshot_controller_unittest.cc",
87 ] 87 ]
88 88
89 deps = [ 89 deps = [
90 ":offline_pages", 90 ":offline_pages",
91 ":switches", 91 ":switches",
92 ":test_support", 92 ":test_support",
93 "//base", 93 "//base",
94 "//base/test:test_support", 94 "//base/test:test_support",
95 "//sql:sql",
95 "//testing/gtest", 96 "//testing/gtest",
96 "//url", 97 "//url",
97 ] 98 ]
98 } 99 }
99 100
100 if (is_android) { 101 if (is_android) {
101 java_cpp_enum("offline_page_model_enums_java") { 102 java_cpp_enum("offline_page_model_enums_java") {
102 sources = [ 103 sources = [
103 "offline_page_types.h", 104 "offline_page_types.h",
104 ] 105 ]
105 } 106 }
106 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698