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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/history/core/browser | 8 # GN version: //components/history/core/browser |
9 'target_name': 'history_core_browser', | 9 'target_name': 'history_core_browser', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 ], | 108 ], |
109 }, | 109 }, |
110 { | 110 { |
111 # GN version: //components/history/core/test | 111 # GN version: //components/history/core/test |
112 'target_name': 'history_core_test_support', | 112 'target_name': 'history_core_test_support', |
113 'type': 'static_library', | 113 'type': 'static_library', |
114 'include_dirs': [ | 114 'include_dirs': [ |
115 '..', | 115 '..', |
116 ], | 116 ], |
117 'dependencies': [ | 117 'dependencies': [ |
| 118 '../base/base.gyp:base', |
| 119 '../sql/sql.gyp:sql', |
| 120 '../testing/gtest.gyp:gtest', |
| 121 '../url/url.gyp:url_lib', |
118 'history_core_browser', | 122 'history_core_browser', |
119 '../base/base.gyp:base', | |
120 '../url/url.gyp:url_lib', | |
121 ], | 123 ], |
122 'sources': [ | 124 'sources': [ |
123 # Note: sources list duplicated in GN build. | 125 # Note: sources list duplicated in GN build. |
124 'history/core/test/history_client_fake_bookmarks.cc', | 126 'history/core/test/history_client_fake_bookmarks.cc', |
125 'history/core/test/history_client_fake_bookmarks.h', | 127 'history/core/test/history_client_fake_bookmarks.h', |
| 128 'history/core/test/history_unittest_base.cc', |
| 129 'history/core/test/history_unittest_base.h', |
126 ], | 130 ], |
127 }, | 131 }, |
128 ], | 132 ], |
129 'conditions': [ | 133 'conditions': [ |
130 ['OS!="ios"', { | 134 ['OS!="ios"', { |
131 'targets': [ | 135 'targets': [ |
132 { | 136 { |
133 # GN version: //components/history/content/browser | 137 # GN version: //components/history/content/browser |
134 'target_name': 'history_content_browser', | 138 'target_name': 'history_content_browser', |
135 'type': 'static_library', | 139 'type': 'static_library', |
(...skipping 29 matching lines...) Expand all Loading... |
165 'history_core_browser', | 169 'history_core_browser', |
166 ], | 170 ], |
167 'sources': [ | 171 'sources': [ |
168 'history/core/android/android_cache_database.cc', | 172 'history/core/android/android_cache_database.cc', |
169 'history/core/android/android_cache_database.h', | 173 'history/core/android/android_cache_database.h', |
170 'history/core/android/android_history_types.cc', | 174 'history/core/android/android_history_types.cc', |
171 'history/core/android/android_history_types.h', | 175 'history/core/android/android_history_types.h', |
172 'history/core/android/android_time.h', | 176 'history/core/android/android_time.h', |
173 'history/core/android/android_urls_database.cc', | 177 'history/core/android/android_urls_database.cc', |
174 'history/core/android/android_urls_database.h', | 178 'history/core/android/android_urls_database.h', |
| 179 'history/core/android/android_urls_sql_handler.cc', |
| 180 'history/core/android/android_urls_sql_handler.h', |
175 'history/core/android/favicon_sql_handler.cc', | 181 'history/core/android/favicon_sql_handler.cc', |
176 'history/core/android/favicon_sql_handler.h', | 182 'history/core/android/favicon_sql_handler.h', |
177 'history/core/android/sql_handler.cc', | 183 'history/core/android/sql_handler.cc', |
178 'history/core/android/sql_handler.h', | 184 'history/core/android/sql_handler.h', |
| 185 'history/core/android/urls_sql_handler.cc', |
| 186 'history/core/android/urls_sql_handler.h', |
| 187 'history/core/android/visit_sql_handler.cc', |
| 188 'history/core/android/visit_sql_handler.h', |
179 ], | 189 ], |
180 }, | 190 }, |
181 ], | 191 ], |
182 }], | 192 }], |
183 ], | 193 ], |
184 } | 194 } |
OLD | NEW |