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

Side by Side Diff: components/bookmarks.gypi

Issue 1165913004: Componentize StartupTaskRunnerService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 'bookmarks/browser/bookmark_node_data_mac.cc', 52 'bookmarks/browser/bookmark_node_data_mac.cc',
53 'bookmarks/browser/bookmark_node_data_views.cc', 53 'bookmarks/browser/bookmark_node_data_views.cc',
54 'bookmarks/browser/bookmark_pasteboard_helper_mac.h', 54 'bookmarks/browser/bookmark_pasteboard_helper_mac.h',
55 'bookmarks/browser/bookmark_pasteboard_helper_mac.mm', 55 'bookmarks/browser/bookmark_pasteboard_helper_mac.mm',
56 'bookmarks/browser/bookmark_storage.cc', 56 'bookmarks/browser/bookmark_storage.cc',
57 'bookmarks/browser/bookmark_storage.h', 57 'bookmarks/browser/bookmark_storage.h',
58 'bookmarks/browser/bookmark_utils.cc', 58 'bookmarks/browser/bookmark_utils.cc',
59 'bookmarks/browser/bookmark_utils.h', 59 'bookmarks/browser/bookmark_utils.h',
60 'bookmarks/browser/scoped_group_bookmark_actions.cc', 60 'bookmarks/browser/scoped_group_bookmark_actions.cc',
61 'bookmarks/browser/scoped_group_bookmark_actions.h', 61 'bookmarks/browser/scoped_group_bookmark_actions.h',
62 'bookmarks/browser/startup_task_runner_service.cc',
63 'bookmarks/browser/startup_task_runner_service.h',
62 ], 64 ],
63 'conditions': [ 65 'conditions': [
64 ['OS == "android"', { 66 ['OS == "android"', {
65 # In GN, this android-specific stuff is its own target at 67 # In GN, this android-specific stuff is its own target at
66 # //components/bookmarks/common/android 68 # //components/bookmarks/common/android
67 # TODO(cjhopman): This should be its own target in Gyp, too. 69 # TODO(cjhopman): This should be its own target in Gyp, too.
68 'dependencies': [ 70 'dependencies': [
69 'bookmarks_jni_headers', 71 'bookmarks_jni_headers',
70 ], 72 ],
71 'sources' : [ 73 'sources' : [
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'type': 'none', 178 'type': 'none',
177 'variables': { 179 'variables': {
178 'source_file': 'bookmarks/common/android/bookmark_type.h', 180 'source_file': 'bookmarks/common/android/bookmark_type.h',
179 }, 181 },
180 'includes': [ '../build/android/java_cpp_enum.gypi' ], 182 'includes': [ '../build/android/java_cpp_enum.gypi' ],
181 }, 183 },
182 ], 184 ],
183 }] 185 }]
184 ], 186 ],
185 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698