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

Side by Side Diff: extensions/extensions.gyp

Issue 589663002: Make protobuf enums canonical for ReadState/WriteState/ConnectState. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resync with master Created 6 years, 3 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/api/cast_channel/logging.proto ('k') | no next file » | 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 '../components/components.gyp:sessions', 278 '../components/components.gyp:sessions',
279 '../components/components.gyp:storage_monitor', 279 '../components/components.gyp:storage_monitor',
280 '../components/components.gyp:web_modal', 280 '../components/components.gyp:web_modal',
281 '../content/content.gyp:content_browser', 281 '../content/content.gyp:content_browser',
282 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 282 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
283 '../device/serial/serial.gyp:device_serial', 283 '../device/serial/serial.gyp:device_serial',
284 '../skia/skia.gyp:skia', 284 '../skia/skia.gyp:skia',
285 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 285 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
286 '../third_party/re2/re2.gyp:re2', 286 '../third_party/re2/re2.gyp:re2',
287 'browser/api/api_registration.gyp:extensions_api_registration', 287 'browser/api/api_registration.gyp:extensions_api_registration',
288 'cast_channel_proto', 288 'common/api/api.gyp:cast_channel_proto',
289 'common/api/api.gyp:extensions_api', 289 'common/api/api.gyp:extensions_api',
290 'extensions_common', 290 'extensions_common',
291 'extensions_strings.gyp:extensions_strings', 291 'extensions_strings.gyp:extensions_strings',
292 ], 292 ],
293 'include_dirs': [ 293 'include_dirs': [
294 '..', 294 '..',
295 '<(INTERMEDIATE_DIR)', 295 '<(INTERMEDIATE_DIR)',
296 # Needed to access generated API headers. 296 # Needed to access generated API headers.
297 '<(SHARED_INTERMEDIATE_DIR)', 297 '<(SHARED_INTERMEDIATE_DIR)',
298 # Needed for grit. 298 # Needed for grit.
(...skipping 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', 1025 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
1026 '../device/serial/serial.gyp:device_serial', 1026 '../device/serial/serial.gyp:device_serial',
1027 '../device/serial/serial.gyp:device_serial_test_util', 1027 '../device/serial/serial.gyp:device_serial_test_util',
1028 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1028 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1029 '../mojo/mojo_base.gyp:mojo_cpp_bindings', 1029 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
1030 '../mojo/mojo_base.gyp:mojo_js_bindings_lib', 1030 '../mojo/mojo_base.gyp:mojo_js_bindings_lib',
1031 '../mojo/mojo_base.gyp:mojo_system_impl', 1031 '../mojo/mojo_base.gyp:mojo_system_impl',
1032 '../testing/gmock.gyp:gmock', 1032 '../testing/gmock.gyp:gmock',
1033 '../testing/gtest.gyp:gtest', 1033 '../testing/gtest.gyp:gtest',
1034 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 1034 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
1035 'cast_channel_proto', 1035 'common/api/api.gyp:cast_channel_proto',
1036 'extensions_common', 1036 'extensions_common',
1037 'extensions_renderer', 1037 'extensions_renderer',
1038 'extensions_resources.gyp:extensions_resources', 1038 'extensions_resources.gyp:extensions_resources',
1039 'extensions_shell_and_test_pak', 1039 'extensions_shell_and_test_pak',
1040 'extensions_strings.gyp:extensions_strings', 1040 'extensions_strings.gyp:extensions_strings',
1041 'extensions_test_support', 1041 'extensions_test_support',
1042 ], 1042 ],
1043 # Needed for third_party libraries like leveldb. 1043 # Needed for third_party libraries like leveldb.
1044 'include_dirs': [ 1044 'include_dirs': [
1045 '..', 1045 '..',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 # Disable c4267 warnings until we fix size_t to int truncations. 1135 # Disable c4267 warnings until we fix size_t to int truncations.
1136 'msvs_disabled_warnings': [ 4267, ], 1136 'msvs_disabled_warnings': [ 4267, ],
1137 'conditions': [ 1137 'conditions': [
1138 ['OS=="win" and win_use_allocator_shim==1', { 1138 ['OS=="win" and win_use_allocator_shim==1', {
1139 'dependencies': [ 1139 'dependencies': [
1140 '../base/allocator/allocator.gyp:allocator', 1140 '../base/allocator/allocator.gyp:allocator',
1141 ], 1141 ],
1142 }], 1142 }],
1143 ], 1143 ],
1144 }, 1144 },
1145 {
1146 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers.
1147 # GN version: //extensions/browser/api/cast_channel:cast_channel_proto
1148 'target_name': 'cast_channel_proto',
1149 'type': 'static_library',
1150 'sources': [
1151 'browser/api/cast_channel/cast_channel.proto',
1152 'browser/api/cast_channel/logging.proto'
1153 ],
1154 'variables': {
1155 'proto_in_dir': 'browser/api/cast_channel',
1156 'proto_out_dir': 'extensions/browser/api/cast_channel',
1157 },
1158 'includes': [ '../build/protoc.gypi' ]
1159 },
1160 ] 1145 ]
1161 } 1146 }
OLDNEW
« no previous file with comments | « extensions/common/api/cast_channel/logging.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698