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

Side by Side Diff: components/history.gypi

Issue 285233012: Abstract history dependencies on bookmarks through HistoryClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'history_core_browser',
9 'type': 'static_library',
10 'include_dirs': [
11 '..',
12 ],
13 'dependencies': [
14 '../base/base.gyp:base',
15 '../url/url.gyp:url_lib',
16 ],
17 'sources': [
18 'history/core/browser/history_client.h',
19 ],
20 },
21 {
22 'target_name': 'history_core_test_support',
23 'type': 'static_library',
24 'include_dirs': [
25 '..',
26 ],
27 'dependencies': [
28 'history_core_browser',
29 '../base/base.gyp:base',
30 '../url/url.gyp:url_lib',
31 ],
32 'sources': [
33 'history/core/browser/test_history_client.cc',
34 'history/core/browser/test_history_client.h',
35 ],
36 },
37 ],
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698