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

Side by Side Diff: extensions/extensions.gyp

Issue 237723004: Move EventBindings to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « extensions/common/value_counter.cc ('k') | extensions/renderer/event_bindings.h » ('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 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 'common/stack_frame.cc', 187 'common/stack_frame.cc',
188 'common/stack_frame.h', 188 'common/stack_frame.h',
189 'common/switches.cc', 189 'common/switches.cc',
190 'common/switches.h', 190 'common/switches.h',
191 'common/url_pattern.cc', 191 'common/url_pattern.cc',
192 'common/url_pattern.h', 192 'common/url_pattern.h',
193 'common/url_pattern_set.cc', 193 'common/url_pattern_set.cc',
194 'common/url_pattern_set.h', 194 'common/url_pattern_set.h',
195 'common/user_script.cc', 195 'common/user_script.cc',
196 'common/user_script.h', 196 'common/user_script.h',
197 'common/value_counter.cc',
198 'common/value_counter.h',
197 'common/view_type.cc', 199 'common/view_type.cc',
198 'common/view_type.h', 200 'common/view_type.h',
199 ], 201 ],
200 # Disable c4267 warnings until we fix size_t to int truncations. 202 # Disable c4267 warnings until we fix size_t to int truncations.
201 'msvs_disabled_warnings': [ 4267, ], 203 'msvs_disabled_warnings': [ 4267, ],
202 'conditions': [ 204 'conditions': [
203 ['enable_extensions==1', { 205 ['enable_extensions==1', {
204 'sources!': [ 206 'sources!': [
205 'common/extension_api_stub.cc', 207 'common/extension_api_stub.cc',
206 ], 208 ],
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 }, 410 },
409 { 411 {
410 'target_name': 'extensions_renderer', 412 'target_name': 'extensions_renderer',
411 'type': 'static_library', 413 'type': 'static_library',
412 'include_dirs': [ 414 'include_dirs': [
413 '..', 415 '..',
414 ], 416 ],
415 'sources': [ 417 'sources': [
416 'renderer/console.cc', 418 'renderer/console.cc',
417 'renderer/console.h', 419 'renderer/console.h',
420 'renderer/event_bindings.cc',
421 'renderer/event_bindings.h',
418 'renderer/module_system.cc', 422 'renderer/module_system.cc',
419 'renderer/module_system.h', 423 'renderer/module_system.h',
420 'renderer/native_handler.cc', 424 'renderer/native_handler.cc',
421 'renderer/native_handler.h', 425 'renderer/native_handler.h',
422 'renderer/object_backed_native_handler.cc', 426 'renderer/object_backed_native_handler.cc',
423 'renderer/object_backed_native_handler.h', 427 'renderer/object_backed_native_handler.h',
424 'renderer/request_sender.cc', 428 'renderer/request_sender.cc',
425 'renderer/request_sender.h', 429 'renderer/request_sender.h',
426 'renderer/safe_builtins.cc', 430 'renderer/safe_builtins.cc',
427 'renderer/safe_builtins.h', 431 'renderer/safe_builtins.h',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 'test/test_extensions_client.cc', 500 'test/test_extensions_client.cc',
497 'test/test_extensions_client.h', 501 'test/test_extensions_client.h',
498 'test/test_permission_message_provider.cc', 502 'test/test_permission_message_provider.cc',
499 'test/test_permission_message_provider.h', 503 'test/test_permission_message_provider.h',
500 'test/test_permissions_provider.cc', 504 'test/test_permissions_provider.cc',
501 'test/test_permissions_provider.h', 505 'test/test_permissions_provider.h',
502 ], 506 ],
503 }, 507 },
504 ] 508 ]
505 } 509 }
OLDNEW
« no previous file with comments | « extensions/common/value_counter.cc ('k') | extensions/renderer/event_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698