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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 1243853002: Move chrome/browser/chromeos/drive/drive.proto into components/drive (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | « chrome/browser/ui/webui/chromeos/drive_internals_ui.cc ('k') | components/drive.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'browser_chromeos_sources': [ 9 'browser_chromeos_sources': [
10 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test s 10 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test s
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after
1134 'cert_logger_proto', 1134 'cert_logger_proto',
1135 'chrome_resources.gyp:chrome_extra_resources', 1135 'chrome_resources.gyp:chrome_extra_resources',
1136 'chrome_resources.gyp:chrome_resources', 1136 'chrome_resources.gyp:chrome_resources',
1137 'chrome_resources.gyp:platform_locale_settings', 1137 'chrome_resources.gyp:platform_locale_settings',
1138 'chrome_resources.gyp:theme_resources', 1138 'chrome_resources.gyp:theme_resources',
1139 'common', 1139 'common',
1140 'common/extensions/api/api.gyp:chrome_api', 1140 'common/extensions/api/api.gyp:chrome_api',
1141 'common_net', 1141 'common_net',
1142 'debugger', 1142 'debugger',
1143 'device_policy_proto', 1143 'device_policy_proto',
1144 'drive_proto',
1145 'encrypted_cert_logger_proto', 1144 'encrypted_cert_logger_proto',
1146 'installer_util', 1145 'installer_util',
1147 'safe_browsing_chunk_proto', 1146 'safe_browsing_chunk_proto',
1148 'safe_browsing_proto', 1147 'safe_browsing_proto',
1149 'safe_browsing_report_proto', 1148 'safe_browsing_report_proto',
1150 '../build/linux/system.gyp:dbus', 1149 '../build/linux/system.gyp:dbus',
1151 '../chromeos/chromeos.gyp:chromeos', 1150 '../chromeos/chromeos.gyp:chromeos',
1152 '../chromeos/chromeos.gyp:chromeos_test_support', 1151 '../chromeos/chromeos.gyp:chromeos_test_support',
1153 '../chromeos/chromeos.gyp:cryptohome_proto', 1152 '../chromeos/chromeos.gyp:cryptohome_proto',
1154 # browser_chromeos #includes signed_secret.pb.h directly. 1153 # browser_chromeos #includes signed_secret.pb.h directly.
1155 '../chromeos/chromeos.gyp:cryptohome_signkey_proto', 1154 '../chromeos/chromeos.gyp:cryptohome_signkey_proto',
1156 # browser_chromeos #includes power_supply_properties.pb.h directly. 1155 # browser_chromeos #includes power_supply_properties.pb.h directly.
1157 '../chromeos/chromeos.gyp:power_manager_proto', 1156 '../chromeos/chromeos.gyp:power_manager_proto',
1158 '../chromeos/ime/input_method.gyp:gencode', 1157 '../chromeos/ime/input_method.gyp:gencode',
1159 '../components/components.gyp:cloud_policy_proto', 1158 '../components/components.gyp:cloud_policy_proto',
1159 '../components/components.gyp:drive',
1160 '../components/components.gyp:login', 1160 '../components/components.gyp:login',
1161 '../components/components.gyp:onc_component', 1161 '../components/components.gyp:onc_component',
1162 '../components/components.gyp:ownership', 1162 '../components/components.gyp:ownership',
1163 '../components/components.gyp:pairing', 1163 '../components/components.gyp:pairing',
1164 '../components/components.gyp:policy', 1164 '../components/components.gyp:policy',
1165 '../components/components.gyp:user_manager', 1165 '../components/components.gyp:user_manager',
1166 # This depends directly on the variations target, rather than just 1166 # This depends directly on the variations target, rather than just
1167 # transitively via the common target because the proto sources need to 1167 # transitively via the common target because the proto sources need to
1168 # be generated before code in this target can start building. 1168 # be generated before code in this target can start building.
1169 '../components/components.gyp:variations', 1169 '../components/components.gyp:variations',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 ], 1301 ],
1302 }], 1302 }],
1303 ['use_ozone == 1', { 1303 ['use_ozone == 1', {
1304 'dependencies': [ 1304 'dependencies': [
1305 '../ui/ozone/ozone.gyp:ozone', 1305 '../ui/ozone/ozone.gyp:ozone',
1306 ], 1306 ],
1307 }], 1307 }],
1308 ], 1308 ],
1309 }, 1309 },
1310 { 1310 {
1311 # GN version: //chrome/browser/chromeos:drive_proto
1312 # Protobuf compiler / generator for the Drive protocol buffer.
1313 'target_name': 'drive_proto',
1314 'type': 'static_library',
1315 'sources': [ 'browser/chromeos/drive/drive.proto' ],
1316 'variables': {
1317 'proto_in_dir': 'browser/chromeos/drive',
1318 'proto_out_dir': 'chrome/browser/chromeos/drive',
1319 },
1320 'includes': [ '../build/protoc.gypi' ]
1321 },
1322 {
1323 # GN version: //chrome/browser/chromeos:device_policy_proto 1311 # GN version: //chrome/browser/chromeos:device_policy_proto
1324 # Protobuf compiler / generator for device settings protocol buffers. 1312 # Protobuf compiler / generator for device settings protocol buffers.
1325 'target_name': 'device_policy_proto', 1313 'target_name': 'device_policy_proto',
1326 'type': 'static_library', 1314 'type': 'static_library',
1327 'sources': [ 1315 'sources': [
1328 'browser/chromeos/policy/proto/chrome_device_policy.proto', 1316 'browser/chromeos/policy/proto/chrome_device_policy.proto',
1329 'browser/chromeos/policy/proto/install_attributes.proto', 1317 'browser/chromeos/policy/proto/install_attributes.proto',
1330 ], 1318 ],
1331 'variables': { 1319 'variables': {
1332 'proto_in_dir': 'browser/chromeos/policy/proto', 1320 'proto_in_dir': 'browser/chromeos/policy/proto',
(...skipping 11 matching lines...) Expand all
1344 'browser/chromeos/attestation/attestation_signed_data.proto', 1332 'browser/chromeos/attestation/attestation_signed_data.proto',
1345 ], 1333 ],
1346 'variables': { 1334 'variables': {
1347 'proto_in_dir': 'browser/chromeos/attestation', 1335 'proto_in_dir': 'browser/chromeos/attestation',
1348 'proto_out_dir': 'chrome/browser/chromeos/attestation', 1336 'proto_out_dir': 'chrome/browser/chromeos/attestation',
1349 }, 1337 },
1350 'includes': [ '../build/protoc.gypi' ] 1338 'includes': [ '../build/protoc.gypi' ]
1351 }, 1339 },
1352 ], 1340 ],
1353 } 1341 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/chromeos/drive_internals_ui.cc ('k') | components/drive.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698