| 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 'target_name': 'history_core_browser', | 9 'target_name': 'history_core_browser', |
| 9 'type': 'static_library', | 10 'type': 'static_library', |
| 10 'include_dirs': [ | 11 'include_dirs': [ |
| 11 '..', | 12 '..', |
| 12 ], | 13 ], |
| 13 'dependencies': [ | 14 'dependencies': [ |
| 14 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
| 15 '../net/net.gyp:net', | 16 '../net/net.gyp:net', |
| 16 '../sql/sql.gyp:sql', | 17 '../sql/sql.gyp:sql', |
| 17 '../url/url.gyp:url_lib', | 18 '../url/url.gyp:url_lib', |
| 18 'keyed_service_core', | 19 'keyed_service_core', |
| 19 'query_parser', | 20 'query_parser', |
| 20 ], | 21 ], |
| 21 'sources': [ | 22 'sources': [ |
| 23 # Note: sources list duplicated in GN build. |
| 22 'history/core/browser/history_client.cc', | 24 'history/core/browser/history_client.cc', |
| 23 'history/core/browser/history_client.h', | 25 'history/core/browser/history_client.h', |
| 24 'history/core/browser/history_match.cc', | 26 'history/core/browser/history_match.cc', |
| 25 'history/core/browser/history_match.h', | 27 'history/core/browser/history_match.h', |
| 26 'history/core/browser/in_memory_database.cc', | 28 'history/core/browser/in_memory_database.cc', |
| 27 'history/core/browser/in_memory_database.h', | 29 'history/core/browser/in_memory_database.h', |
| 28 'history/core/browser/keyword_id.h', | 30 'history/core/browser/keyword_id.h', |
| 29 'history/core/browser/keyword_search_term.cc', | 31 'history/core/browser/keyword_search_term.cc', |
| 30 'history/core/browser/keyword_search_term.h', | 32 'history/core/browser/keyword_search_term.h', |
| 31 'history/core/browser/url_database.cc', | 33 'history/core/browser/url_database.cc', |
| 32 'history/core/browser/url_database.h', | 34 'history/core/browser/url_database.h', |
| 33 'history/core/browser/url_row.cc', | 35 'history/core/browser/url_row.cc', |
| 34 'history/core/browser/url_row.h', | 36 'history/core/browser/url_row.h', |
| 35 ], | 37 ], |
| 36 }, | 38 }, |
| 37 { | 39 { |
| 40 # GN version: //components/history/core/common |
| 38 'target_name': 'history_core_common', | 41 'target_name': 'history_core_common', |
| 39 'type': 'static_library', | 42 'type': 'static_library', |
| 40 'include_dirs': [ | 43 'include_dirs': [ |
| 41 '..', | 44 '..', |
| 42 ], | 45 ], |
| 43 'dependencies': [ | 46 'dependencies': [ |
| 44 '../base/base.gyp:base', | 47 '../base/base.gyp:base', |
| 45 ], | 48 ], |
| 46 'sources': [ | 49 'sources': [ |
| 50 # Note: sources list duplicated in GN build. |
| 47 'history/core/common/thumbnail_score.cc', | 51 'history/core/common/thumbnail_score.cc', |
| 48 'history/core/common/thumbnail_score.h', | 52 'history/core/common/thumbnail_score.h', |
| 49 ], | 53 ], |
| 50 }, | 54 }, |
| 51 { | 55 { |
| 56 # GN version: //components/history/core/test |
| 52 'target_name': 'history_core_test_support', | 57 'target_name': 'history_core_test_support', |
| 53 'type': 'static_library', | 58 'type': 'static_library', |
| 54 'include_dirs': [ | 59 'include_dirs': [ |
| 55 '..', | 60 '..', |
| 56 ], | 61 ], |
| 57 'dependencies': [ | 62 'dependencies': [ |
| 58 'history_core_browser', | 63 'history_core_browser', |
| 59 '../base/base.gyp:base', | 64 '../base/base.gyp:base', |
| 60 '../url/url.gyp:url_lib', | 65 '../url/url.gyp:url_lib', |
| 61 ], | 66 ], |
| 62 'sources': [ | 67 'sources': [ |
| 68 # Note: sources list duplicated in GN build. |
| 63 'history/core/test/history_client_fake_bookmarks.cc', | 69 'history/core/test/history_client_fake_bookmarks.cc', |
| 64 'history/core/test/history_client_fake_bookmarks.h', | 70 'history/core/test/history_client_fake_bookmarks.h', |
| 65 ], | 71 ], |
| 66 }, | 72 }, |
| 67 ], | 73 ], |
| 68 } | 74 } |
| OLD | NEW |