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

Side by Side Diff: extensions/extensions.gyp

Issue 434243003: extensions: Add GN version of extensions_shell_and_test_pak and unittests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 'conditions': [ 845 'conditions': [
846 ['OS=="win" and win_use_allocator_shim==1', { 846 ['OS=="win" and win_use_allocator_shim==1', {
847 'dependencies': [ 847 'dependencies': [
848 '../base/allocator/allocator.gyp:allocator', 848 '../base/allocator/allocator.gyp:allocator',
849 ], 849 ],
850 }], 850 }],
851 ], 851 ],
852 }, 852 },
853 { 853 {
854 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers. 854 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers.
855 # GN version: //extensions/browser/api/cast_channel/BUILD.gn 855 # GN version: //extensions/browser/api/cast_channel:cast_channel_proto
856 'target_name': 'cast_channel_proto', 856 'target_name': 'cast_channel_proto',
857 'type': 'static_library', 857 'type': 'static_library',
858 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], 858 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ],
859 'variables': { 859 'variables': {
860 'proto_in_dir': 'browser/api/cast_channel', 860 'proto_in_dir': 'browser/api/cast_channel',
861 'proto_out_dir': 'extensions/browser/api/cast_channel', 861 'proto_out_dir': 'extensions/browser/api/cast_channel',
862 }, 862 },
863 'includes': [ '../build/protoc.gypi' ] 863 'includes': [ '../build/protoc.gypi' ]
864 }, 864 },
865 ] 865 ]
866 } 866 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698