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

Side by Side Diff: components/bookmarks.gypi

Issue 268673004: Move bookmarks' test support file to the bookmarks component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@367839
Patch Set: Rename target and subdirectory 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
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 'target_name': 'bookmarks_core_browser', 8 'target_name': 'bookmarks_core_browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'dependencies': [ 65 'dependencies': [
66 '../base/base.gyp:base', 66 '../base/base.gyp:base',
67 ], 67 ],
68 'sources': [ 68 'sources': [
69 'bookmarks/core/common/bookmark_constants.cc', 69 'bookmarks/core/common/bookmark_constants.cc',
70 'bookmarks/core/common/bookmark_constants.h', 70 'bookmarks/core/common/bookmark_constants.h',
71 'bookmarks/core/common/bookmark_pref_names.cc', 71 'bookmarks/core/common/bookmark_pref_names.cc',
72 'bookmarks/core/common/bookmark_pref_names.h', 72 'bookmarks/core/common/bookmark_pref_names.h',
73 ], 73 ],
74 }, 74 },
75 {
76 'target_name': 'bookmarks_core_test_support',
77 'type': 'static_library',
78 'include_dirs': [
79 '..',
80 ],
81 'dependencies': [
82 '../base/base.gyp:base',
83 '../url/url.gyp:url_lib',
84 'bookmarks_core_browser',
85 ],
86 'sources': [
87 'bookmarks/core/test/bookmark_test_helpers.cc',
88 'bookmarks/core/test/bookmark_test_helpers.h',
89 'bookmarks/core/test/test_bookmark_client.cc',
90 'bookmarks/core/test/test_bookmark_client.h',
91 ],
92 },
75 ], 93 ],
76 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698