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

Side by Side Diff: extensions/extensions.gyp

Issue 606503002: Rewrite apps::SavedDevicesService as extensions::DevicePermissionsManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use C++11 for each loops and auto. Created 6 years, 2 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 'browser/api/declarative_webrequest/webrequest_action.cc', 383 'browser/api/declarative_webrequest/webrequest_action.cc',
384 'browser/api/declarative_webrequest/webrequest_action.h', 384 'browser/api/declarative_webrequest/webrequest_action.h',
385 'browser/api/declarative_webrequest/webrequest_condition.cc', 385 'browser/api/declarative_webrequest/webrequest_condition.cc',
386 'browser/api/declarative_webrequest/webrequest_condition.h', 386 'browser/api/declarative_webrequest/webrequest_condition.h',
387 'browser/api/declarative_webrequest/webrequest_condition_attribute.cc', 387 'browser/api/declarative_webrequest/webrequest_condition_attribute.cc',
388 'browser/api/declarative_webrequest/webrequest_condition_attribute.h', 388 'browser/api/declarative_webrequest/webrequest_condition_attribute.h',
389 'browser/api/declarative_webrequest/webrequest_constants.cc', 389 'browser/api/declarative_webrequest/webrequest_constants.cc',
390 'browser/api/declarative_webrequest/webrequest_constants.h', 390 'browser/api/declarative_webrequest/webrequest_constants.h',
391 'browser/api/declarative_webrequest/webrequest_rules_registry.cc', 391 'browser/api/declarative_webrequest/webrequest_rules_registry.cc',
392 'browser/api/declarative_webrequest/webrequest_rules_registry.h', 392 'browser/api/declarative_webrequest/webrequest_rules_registry.h',
393 'browser/api/device_permissions_manager.cc',
394 'browser/api/device_permissions_manager.h',
393 'browser/api/dns/dns_api.cc', 395 'browser/api/dns/dns_api.cc',
394 'browser/api/dns/dns_api.h', 396 'browser/api/dns/dns_api.h',
395 'browser/api/dns/host_resolver_wrapper.cc', 397 'browser/api/dns/host_resolver_wrapper.cc',
396 'browser/api/dns/host_resolver_wrapper.h', 398 'browser/api/dns/host_resolver_wrapper.h',
397 'browser/api/execute_code_function.cc', 399 'browser/api/execute_code_function.cc',
398 'browser/api/execute_code_function.h', 400 'browser/api/execute_code_function.h',
399 'browser/api/extensions_api_client.cc', 401 'browser/api/extensions_api_client.cc',
400 'browser/api/extensions_api_client.h', 402 'browser/api/extensions_api_client.h',
401 'browser/api/hid/hid_api.cc', 403 'browser/api/hid/hid_api.cc',
402 'browser/api/hid/hid_api.h', 404 'browser/api/hid/hid_api.h',
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 'conditions': [ 1166 'conditions': [
1165 ['OS=="win" and win_use_allocator_shim==1', { 1167 ['OS=="win" and win_use_allocator_shim==1', {
1166 'dependencies': [ 1168 'dependencies': [
1167 '../base/allocator/allocator.gyp:allocator', 1169 '../base/allocator/allocator.gyp:allocator',
1168 ], 1170 ],
1169 }], 1171 }],
1170 ], 1172 ],
1171 }, 1173 },
1172 ] 1174 ]
1173 } 1175 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698