| 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 '../ui/base/ui_base.gyp:ui_base', | 18 '../ui/base/ui_base.gyp:ui_base', |
| 19 '../ui/gfx/gfx.gyp:gfx', | 19 '../ui/gfx/gfx.gyp:gfx', |
| 20 '../url/url.gyp:url_lib', | 20 '../url/url.gyp:url_lib', |
| 21 'favicon_base', | 21 'favicon_base', |
| 22 'keyed_service_core', | 22 'keyed_service_core', |
| 23 'query_parser', | 23 'query_parser', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 # Note: sources list duplicated in GN build. | 26 # Note: sources list duplicated in GN build. |
| 27 'history/core/browser/history_client.cc', | 27 'history/core/browser/history_client.cc', |
| 28 'history/core/browser/history_client.h', | 28 'history/core/browser/history_client.h', |
| 29 'history/core/browser/history_service_observer.cc', | |
| 30 'history/core/browser/history_service_observer.h', | |
| 31 'history/core/browser/history_types.cc', | 29 'history/core/browser/history_types.cc', |
| 32 'history/core/browser/history_types.h', | 30 'history/core/browser/history_types.h', |
| 33 'history/core/browser/history_match.cc', | 31 'history/core/browser/history_match.cc', |
| 34 'history/core/browser/history_match.h', | 32 'history/core/browser/history_match.h', |
| 35 'history/core/browser/in_memory_database.cc', | 33 'history/core/browser/in_memory_database.cc', |
| 36 'history/core/browser/in_memory_database.h', | 34 'history/core/browser/in_memory_database.h', |
| 37 'history/core/browser/keyword_id.h', | 35 'history/core/browser/keyword_id.h', |
| 38 'history/core/browser/keyword_search_term.cc', | 36 'history/core/browser/keyword_search_term.cc', |
| 39 'history/core/browser/keyword_search_term.h', | 37 'history/core/browser/keyword_search_term.h', |
| 40 'history/core/browser/page_usage_data.cc', | 38 'history/core/browser/page_usage_data.cc', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ], | 96 ], |
| 99 'sources': [ | 97 'sources': [ |
| 100 'history/core/android/android_history_types.cc', | 98 'history/core/android/android_history_types.cc', |
| 101 'history/core/android/android_history_types.h', | 99 'history/core/android/android_history_types.h', |
| 102 ], | 100 ], |
| 103 }, | 101 }, |
| 104 ], | 102 ], |
| 105 }], | 103 }], |
| 106 ], | 104 ], |
| 107 } | 105 } |
| OLD | NEW |