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

Side by Side Diff: extensions/extensions.gyp

Issue 652313002: Enable the mojo-based serial API in the renderer behind a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-js-natives-registration
Patch Set: rebase Created 6 years, 1 month 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 'common/test_util.cc', 1034 'common/test_util.cc',
1035 'common/test_util.h', 1035 'common/test_util.h',
1036 'common/value_builder.cc', 1036 'common/value_builder.cc',
1037 'common/value_builder.h', 1037 'common/value_builder.h',
1038 'renderer/test_extensions_renderer_client.cc', 1038 'renderer/test_extensions_renderer_client.cc',
1039 'renderer/test_extensions_renderer_client.h', 1039 'renderer/test_extensions_renderer_client.h',
1040 'test/extension_test_message_listener.cc', 1040 'test/extension_test_message_listener.cc',
1041 'test/extension_test_message_listener.h', 1041 'test/extension_test_message_listener.h',
1042 'test/result_catcher.cc', 1042 'test/result_catcher.cc',
1043 'test/result_catcher.h', 1043 'test/result_catcher.h',
1044 'test/service_registration_manager_test_api.cc',
1045 'test/service_registration_manager_test_api.h',
1044 'test/test_extensions_client.cc', 1046 'test/test_extensions_client.cc',
1045 'test/test_extensions_client.h', 1047 'test/test_extensions_client.h',
1046 'test/test_permission_message_provider.cc', 1048 'test/test_permission_message_provider.cc',
1047 'test/test_permission_message_provider.h', 1049 'test/test_permission_message_provider.h',
1048 ], 1050 ],
1049 # Disable c4267 warnings until we fix size_t to int truncations. 1051 # Disable c4267 warnings until we fix size_t to int truncations.
1050 'msvs_disabled_warnings': [ 4267, ], 1052 'msvs_disabled_warnings': [ 4267, ],
1051 }, 1053 },
1052 { 1054 {
1053 # The pak file generated by this target is intended to be shared by 1055 # The pak file generated by this target is intended to be shared by
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 'conditions': [ 1225 'conditions': [
1224 ['OS=="win" and win_use_allocator_shim==1', { 1226 ['OS=="win" and win_use_allocator_shim==1', {
1225 'dependencies': [ 1227 'dependencies': [
1226 '../base/allocator/allocator.gyp:allocator', 1228 '../base/allocator/allocator.gyp:allocator',
1227 ], 1229 ],
1228 }], 1230 }],
1229 ], 1231 ],
1230 }, 1232 },
1231 ] 1233 ]
1232 } 1234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698