| 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', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
| 16 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
| 17 '../sql/sql.gyp:sql', | 17 '../sql/sql.gyp:sql', |
| 18 '../third_party/sqlite/sqlite.gyp:sqlite', | 18 '../third_party/sqlite/sqlite.gyp:sqlite', |
| 19 '../ui/base/ui_base.gyp:ui_base', | 19 '../ui/base/ui_base.gyp:ui_base', |
| 20 '../ui/gfx/gfx.gyp:gfx', | 20 '../ui/gfx/gfx.gyp:gfx', |
| 21 '../url/url.gyp:url_lib', | 21 '../url/url.gyp:url_lib', |
| 22 'favicon_base', | 22 'favicon_base', |
| 23 'history_core_browser_proto', | 23 'history_core_browser_proto', |
| 24 'keyed_service_core', | 24 'keyed_service_core', |
| 25 'query_parser', | 25 'query_parser', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 # Note: sources list duplicated in GN build. | 28 # Note: sources list duplicated in GN build. |
| 29 'history/core/browser/download_constants.cc', |
| 30 'history/core/browser/download_constants.h', |
| 31 'history/core/browser/download_database.cc', |
| 32 'history/core/browser/download_database.h', |
| 33 'history/core/browser/download_row.cc', |
| 34 'history/core/browser/download_row.h', |
| 35 'history/core/browser/download_types.h', |
| 29 'history/core/browser/history_backend_notifier.h', | 36 'history/core/browser/history_backend_notifier.h', |
| 30 'history/core/browser/history_backend_observer.h', | 37 'history/core/browser/history_backend_observer.h', |
| 31 'history/core/browser/history_client.cc', | 38 'history/core/browser/history_client.cc', |
| 32 'history/core/browser/history_client.h', | 39 'history/core/browser/history_client.h', |
| 33 'history/core/browser/history_constants.cc', | 40 'history/core/browser/history_constants.cc', |
| 34 'history/core/browser/history_constants.h', | 41 'history/core/browser/history_constants.h', |
| 35 'history/core/browser/history_db_task.h', | 42 'history/core/browser/history_db_task.h', |
| 36 'history/core/browser/history_match.cc', | 43 'history/core/browser/history_match.cc', |
| 37 'history/core/browser/history_match.h', | 44 'history/core/browser/history_match.h', |
| 38 'history/core/browser/history_service_observer.h', | 45 'history/core/browser/history_service_observer.h', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 '../url/url.gyp:url_lib', | 119 '../url/url.gyp:url_lib', |
| 113 ], | 120 ], |
| 114 'sources': [ | 121 'sources': [ |
| 115 # Note: sources list duplicated in GN build. | 122 # Note: sources list duplicated in GN build. |
| 116 'history/core/test/history_client_fake_bookmarks.cc', | 123 'history/core/test/history_client_fake_bookmarks.cc', |
| 117 'history/core/test/history_client_fake_bookmarks.h', | 124 'history/core/test/history_client_fake_bookmarks.h', |
| 118 ], | 125 ], |
| 119 }, | 126 }, |
| 120 ], | 127 ], |
| 121 'conditions': [ | 128 'conditions': [ |
| 129 ['OS!="ios"', { |
| 130 'targets': [ |
| 131 { |
| 132 # GN version: //components/history/content/browser |
| 133 'target_name': 'history_content_browser', |
| 134 'type': 'static_library', |
| 135 'include_dirs': [ |
| 136 '..', |
| 137 ], |
| 138 'dependencies': [ |
| 139 '../base/base.gyp:base', |
| 140 '../content/content.gyp:content_browser', |
| 141 'history_core_browser', |
| 142 ], |
| 143 'sources': [ |
| 144 'history/content/browser/download_constants_utils.cc', |
| 145 'history/content/browser/download_constants_utils.h', |
| 146 ], |
| 147 } |
| 148 ], |
| 149 }], |
| 122 ['OS=="android"', { | 150 ['OS=="android"', { |
| 123 'targets': [ | 151 'targets': [ |
| 124 { | 152 { |
| 125 # GN version: //components/history/code/android | 153 # GN version: //components/history/code/android |
| 126 'target_name': 'history_core_android', | 154 'target_name': 'history_core_android', |
| 127 'type': 'static_library', | 155 'type': 'static_library', |
| 128 'include_dirs': [ | 156 'include_dirs': [ |
| 129 '..', | 157 '..', |
| 130 ], | 158 ], |
| 131 'dependencies': [ | 159 'dependencies': [ |
| 132 '../base/base.gyp:base', | 160 '../base/base.gyp:base', |
| 133 '../sql/sql.gyp:sql', | 161 '../sql/sql.gyp:sql', |
| 134 'history_core_browser', | 162 'history_core_browser', |
| 135 ], | 163 ], |
| 136 'sources': [ | 164 'sources': [ |
| 137 'history/core/android/android_history_types.cc', | 165 'history/core/android/android_history_types.cc', |
| 138 'history/core/android/android_history_types.h', | 166 'history/core/android/android_history_types.h', |
| 139 ], | 167 ], |
| 140 }, | 168 }, |
| 141 ], | 169 ], |
| 142 }], | 170 }], |
| 143 ], | 171 ], |
| 144 } | 172 } |
| OLD | NEW |