Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(552)

Side by Side Diff: components/history.gypi

Issue 584013002: Componentize history_types.{cc,h} and android_history_types.{cc,h} (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/components_tests.gyp ('k') | components/history/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/gfx/gfx.gyp:gfx', 19 '../ui/gfx/gfx.gyp:gfx',
19 '../url/url.gyp:url_lib', 20 '../url/url.gyp:url_lib',
20 'favicon_base', 21 'favicon_base',
21 'keyed_service_core', 22 'keyed_service_core',
22 'query_parser', 23 'query_parser',
23 ], 24 ],
24 'sources': [ 25 'sources': [
25 # Note: sources list duplicated in GN build. 26 # Note: sources list duplicated in GN build.
26 'history/core/browser/history_client.cc', 27 'history/core/browser/history_client.cc',
27 'history/core/browser/history_client.h', 28 'history/core/browser/history_client.h',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 '../base/base.gyp:base', 72 '../base/base.gyp:base',
72 '../url/url.gyp:url_lib', 73 '../url/url.gyp:url_lib',
73 ], 74 ],
74 'sources': [ 75 'sources': [
75 # Note: sources list duplicated in GN build. 76 # Note: sources list duplicated in GN build.
76 'history/core/test/history_client_fake_bookmarks.cc', 77 'history/core/test/history_client_fake_bookmarks.cc',
77 'history/core/test/history_client_fake_bookmarks.h', 78 'history/core/test/history_client_fake_bookmarks.h',
78 ], 79 ],
79 }, 80 },
80 ], 81 ],
82 'conditions': [
83 ['OS=="android"', {
84 'targets': [
85 {
86 # GN version: //components/history/code/android
87 'target_name': 'history_core_android',
88 'type': 'static_library',
89 'include_dirs': [
90 '..',
91 ],
92 'dependencies': [
93 '../base/base.gyp:base',
94 '../sql/sql.gyp:sql',
95 'history_core_browser',
96 ],
97 'sources': [
98 'history/core/android/android_history_types.cc',
99 'history/core/android/android_history_types.h',
100 ],
101 },
102 ],
103 }],
104 ],
81 } 105 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/history/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698