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

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 189713002: Declare dependency on blink_headers in targets that use blink headers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': 'api', 8 'target_name': 'api',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 'cast_streaming_rtp_stream.idl', 173 'cast_streaming_rtp_stream.idl',
174 'cast_streaming_session.idl', 174 'cast_streaming_session.idl',
175 'cast_streaming_udp_transport.idl', 175 'cast_streaming_udp_transport.idl',
176 ], 176 ],
177 }], 177 }],
178 ], 178 ],
179 'cc_dir': 'chrome/common/extensions/api', 179 'cc_dir': 'chrome/common/extensions/api',
180 'root_namespace': 'extensions::api', 180 'root_namespace': 'extensions::api',
181 }, 181 },
182 'dependencies': [ 182 'dependencies': [
183 '<(DEPTH)/content/content.gyp:content_browser',
183 '<(DEPTH)/skia/skia.gyp:skia', 184 '<(DEPTH)/skia/skia.gyp:skia',
184 '<(DEPTH)/sync/sync.gyp:sync', 185 '<(DEPTH)/sync/sync.gyp:sync',
185 ], 186 ],
186 'conditions': [ 187 'conditions': [
187 ['chromeos==1', { 188 ['chromeos==1', {
188 'dependencies': [ 189 'dependencies': [
189 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 190 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
190 ], 191 ],
191 }], 192 }],
192 ], 193 ],
193 }, 194 },
194 ], 195 ],
195 } 196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698