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

Side by Side Diff: extensions/extensions.gyp

Issue 344433003: Prepare declarativeContent API for new script injection feature. Added Javascript types and functio… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add description to new Javascript events Created 6 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
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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 'common/url_pattern.cc', 199 'common/url_pattern.cc',
200 'common/url_pattern.h', 200 'common/url_pattern.h',
201 'common/url_pattern_set.cc', 201 'common/url_pattern_set.cc',
202 'common/url_pattern_set.h', 202 'common/url_pattern_set.h',
203 'common/user_script.cc', 203 'common/user_script.cc',
204 'common/user_script.h', 204 'common/user_script.h',
205 'common/value_counter.cc', 205 'common/value_counter.cc',
206 'common/value_counter.h', 206 'common/value_counter.h',
207 'common/view_type.cc', 207 'common/view_type.cc',
208 'common/view_type.h', 208 'common/view_type.h',
209 'common/watched_pages_recipient.h',
209 ], 210 ],
210 # Disable c4267 warnings until we fix size_t to int truncations. 211 # Disable c4267 warnings until we fix size_t to int truncations.
211 'msvs_disabled_warnings': [ 4267, ], 212 'msvs_disabled_warnings': [ 4267, ],
212 'conditions': [ 213 'conditions': [
213 ['enable_extensions==1', { 214 ['enable_extensions==1', {
214 'dependencies': [ 215 'dependencies': [
215 '../device/usb/usb.gyp:device_usb', 216 '../device/usb/usb.gyp:device_usb',
216 ], 217 ],
217 'sources!': [ 218 'sources!': [
218 'common/extension_api_stub.cc', 219 'common/extension_api_stub.cc',
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 'test/test_extensions_client.cc', 686 'test/test_extensions_client.cc',
686 'test/test_extensions_client.h', 687 'test/test_extensions_client.h',
687 'test/test_permission_message_provider.cc', 688 'test/test_permission_message_provider.cc',
688 'test/test_permission_message_provider.h', 689 'test/test_permission_message_provider.h',
689 'test/test_permissions_provider.cc', 690 'test/test_permissions_provider.cc',
690 'test/test_permissions_provider.h', 691 'test/test_permissions_provider.h',
691 ], 692 ],
692 }, 693 },
693 ] 694 ]
694 } 695 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698