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

Side by Side Diff: components/bookmarks.gypi

Issue 1233673002: Fix componentization of chrome/browser/bookmarks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments by tfarina and fix compilation Created 5 years, 5 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 # GN version: //components/bookmarks/browser 8 # GN version: //components/bookmarks/browser
9 'target_name': 'bookmarks_browser', 9 'target_name': 'bookmarks_browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'target_name': 'bookmarks_managed', 107 'target_name': 'bookmarks_managed',
108 'type': 'static_library', 108 'type': 'static_library',
109 'include_dirs': [ 109 'include_dirs': [
110 '..', 110 '..',
111 ], 111 ],
112 'dependencies': [ 112 'dependencies': [
113 'bookmarks_browser', 113 'bookmarks_browser',
114 'components_strings.gyp:components_strings', 114 'components_strings.gyp:components_strings',
115 ], 115 ],
116 'sources': [ 116 'sources': [
117 'bookmarks/managed/managed_bookmark_service.cc',
118 'bookmarks/managed/managed_bookmark_service.h',
117 'bookmarks/managed/managed_bookmarks_tracker.cc', 119 'bookmarks/managed/managed_bookmarks_tracker.cc',
118 'bookmarks/managed/managed_bookmarks_tracker.h', 120 'bookmarks/managed/managed_bookmarks_tracker.h',
119 ], 121 ],
120 }, 122 },
121 { 123 {
122 # GN version: //components/bookmarks/test 124 # GN version: //components/bookmarks/test
123 'target_name': 'bookmarks_test_support', 125 'target_name': 'bookmarks_test_support',
124 'type': 'static_library', 126 'type': 'static_library',
125 'include_dirs': [ 127 'include_dirs': [
126 '..', 128 '..',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'type': 'none', 185 'type': 'none',
184 'variables': { 186 'variables': {
185 'source_file': 'bookmarks/common/android/bookmark_type.h', 187 'source_file': 'bookmarks/common/android/bookmark_type.h',
186 }, 188 },
187 'includes': [ '../build/android/java_cpp_enum.gypi' ], 189 'includes': [ '../build/android/java_cpp_enum.gypi' ],
188 }, 190 },
189 ], 191 ],
190 }] 192 }]
191 ], 193 ],
192 } 194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698