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

Side by Side Diff: extensions/extensions.gyp

Issue 1698473004: [chrome.displaySource] Use WDS for Wi-Fi Display implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments from Antony + rebase + GN build fix Created 4 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
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/extensions.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'includes': [ 6 'includes': [
7 'extensions.gypi', 7 'extensions.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 'include_dirs': [ 210 'include_dirs': [
211 '..', 211 '..',
212 ], 212 ],
213 'sources': [ 213 'sources': [
214 '<@(extensions_renderer_sources)', 214 '<@(extensions_renderer_sources)',
215 ], 215 ],
216 # Disable c4267 warnings until we fix size_t to int truncations. 216 # Disable c4267 warnings until we fix size_t to int truncations.
217 'msvs_disabled_warnings': [ 4267, ], 217 'msvs_disabled_warnings': [ 4267, ],
218 'conditions': [ 218 'conditions': [
219 ['enable_wifi_display==1', { 219 ['enable_wifi_display==1', {
220 'dependencies': [
221 '../third_party/wds/wds.gyp:libwds',
222 ],
220 'sources': [ 223 'sources': [
221 '<@(extensions_render_sources_wifi_display)', 224 '<@(extensions_renderer_sources_wifi_display)',
222 ], 225 ],
223 }], 226 }],
224 ], 227 ],
225 }, 228 },
226 { 229 {
227 # GN version: //extensions/utility 230 # GN version: //extensions/utility
228 'target_name': 'extensions_utility', 231 'target_name': 'extensions_utility',
229 'type': 'static_library', 232 'type': 'static_library',
230 'dependencies': [ 233 'dependencies': [
231 '../content/content.gyp:content_common', 234 '../content/content.gyp:content_common',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', 321 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
319 ], 322 ],
320 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 323 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
321 }, 324 },
322 'includes': [ '../build/repack_action.gypi' ], 325 'includes': [ '../build/repack_action.gypi' ],
323 }, 326 },
324 ], 327 ],
325 }, 328 },
326 ] 329 ]
327 } 330 }
OLDNEW
« no previous file with comments | « extensions/common/BUILD.gn ('k') | extensions/extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698