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

Side by Side Diff: extensions/extensions.gyp

Issue 2074263002: [Experimental] Fool around with exposing extension bindings via blink Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 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 17 matching lines...) Expand all
28 # GN version: //extensions/common:mojo 28 # GN version: //extensions/common:mojo
29 'target_name': 'extensions_common_mojo', 29 'target_name': 'extensions_common_mojo',
30 # The type of this target must be none. This is so that resources can 30 # The type of this target must be none. This is so that resources can
31 # depend upon this target for generating the js bindings files. Any 31 # depend upon this target for generating the js bindings files. Any
32 # generated cpp files must be listed explicitly in extensions_common 32 # generated cpp files must be listed explicitly in extensions_common
33 'type': 'none', 33 'type': 'none',
34 'includes': [ 34 'includes': [
35 '../mojo/mojom_bindings_generator.gypi', 35 '../mojo/mojom_bindings_generator.gypi',
36 ], 36 ],
37 'sources': [ 37 'sources': [
38 '<@(extensions_common_api_mojo_sources)',
38 '<@(extensions_common_mojo_sources)', 39 '<@(extensions_common_mojo_sources)',
39 ], 40 ],
40 'conditions': [ 41 'conditions': [
41 ['proprietary_codecs==1 and enable_wifi_display==1', { 42 ['proprietary_codecs==1 and enable_wifi_display==1', {
42 'sources': [ 43 'sources': [
43 '<@(extensions_common_mojo_sources_wifi_display)', 44 '<@(extensions_common_mojo_sources_wifi_display)',
44 ], 45 ],
45 }], 46 }],
46 ], 47 ],
47 }, 48 },
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak', 323 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
323 ], 324 ],
324 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 325 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
325 }, 326 },
326 'includes': [ '../build/repack_action.gypi' ], 327 'includes': [ '../build/repack_action.gypi' ],
327 }, 328 },
328 ], 329 ],
329 }, 330 },
330 ] 331 ]
331 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698