OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |