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

Side by Side Diff: extensions/extensions.gyp

Issue 268553002: Move DOMActivityLogger and associated code from //chrome to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
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 17 matching lines...) Expand all
28 '../ui/gfx/gfx.gyp:gfx_geometry', 28 '../ui/gfx/gfx.gyp:gfx_geometry',
29 '../url/url.gyp:url_lib', 29 '../url/url.gyp:url_lib',
30 'common/api/api.gyp:extensions_api', 30 'common/api/api.gyp:extensions_api',
31 'extensions_strings.gyp:extensions_strings', 31 'extensions_strings.gyp:extensions_strings',
32 ], 32 ],
33 'include_dirs': [ 33 'include_dirs': [
34 '..', 34 '..',
35 '<(INTERMEDIATE_DIR)', 35 '<(INTERMEDIATE_DIR)',
36 ], 36 ],
37 'sources': [ 37 'sources': [
38 'common/ad_injection_constants.cc',
39 'common/ad_injection_constants.h',
38 'common/api/messaging/message.h', 40 'common/api/messaging/message.h',
39 'common/api/sockets/sockets_manifest_data.cc', 41 'common/api/sockets/sockets_manifest_data.cc',
40 'common/api/sockets/sockets_manifest_data.h', 42 'common/api/sockets/sockets_manifest_data.h',
41 'common/api/sockets/sockets_manifest_handler.cc', 43 'common/api/sockets/sockets_manifest_handler.cc',
42 'common/api/sockets/sockets_manifest_handler.h', 44 'common/api/sockets/sockets_manifest_handler.h',
43 'common/api/sockets/sockets_manifest_permission.cc', 45 'common/api/sockets/sockets_manifest_permission.cc',
44 'common/api/sockets/sockets_manifest_permission.h', 46 'common/api/sockets/sockets_manifest_permission.h',
45 'common/common_manifest_handlers.cc', 47 'common/common_manifest_handlers.cc',
46 'common/common_manifest_handlers.h', 48 'common/common_manifest_handlers.h',
47 'common/crx_file.cc', 49 'common/crx_file.cc',
48 'common/crx_file.h', 50 'common/crx_file.h',
49 'common/csp_validator.cc', 51 'common/csp_validator.cc',
50 'common/csp_validator.h', 52 'common/csp_validator.h',
53 'common/dom_action_types.h',
51 'common/draggable_region.cc', 54 'common/draggable_region.cc',
52 'common/draggable_region.h', 55 'common/draggable_region.h',
53 'common/error_utils.cc', 56 'common/error_utils.cc',
54 'common/error_utils.h', 57 'common/error_utils.h',
55 'common/event_filter.cc', 58 'common/event_filter.cc',
56 'common/event_filter.h', 59 'common/event_filter.h',
57 'common/event_filtering_info.cc', 60 'common/event_filtering_info.cc',
58 'common/event_filtering_info.h', 61 'common/event_filtering_info.h',
59 'common/event_matcher.cc', 62 'common/event_matcher.cc',
60 'common/event_matcher.h', 63 'common/event_matcher.h',
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 # Disable c4267 warnings until we fix size_t to int truncations. 408 # Disable c4267 warnings until we fix size_t to int truncations.
406 'msvs_disabled_warnings': [ 4267, ], 409 'msvs_disabled_warnings': [ 4267, ],
407 }, 410 },
408 { 411 {
409 'target_name': 'extensions_renderer', 412 'target_name': 'extensions_renderer',
410 'type': 'static_library', 413 'type': 'static_library',
411 'include_dirs': [ 414 'include_dirs': [
412 '..', 415 '..',
413 ], 416 ],
414 'sources': [ 417 'sources': [
418 'renderer/activity_log_converter_strategy.cc',
419 'renderer/activity_log_converter_strategy.h',
415 'renderer/api_definitions_natives.cc', 420 'renderer/api_definitions_natives.cc',
416 'renderer/api_definitions_natives.h', 421 'renderer/api_definitions_natives.h',
417 'renderer/binding_generating_native_handler.cc', 422 'renderer/binding_generating_native_handler.cc',
418 'renderer/binding_generating_native_handler.h', 423 'renderer/binding_generating_native_handler.h',
419 'renderer/blob_native_handler.cc', 424 'renderer/blob_native_handler.cc',
420 'renderer/blob_native_handler.h', 425 'renderer/blob_native_handler.h',
421 'renderer/console.cc', 426 'renderer/console.cc',
422 'renderer/console.h', 427 'renderer/console.h',
423 'renderer/content_watcher.cc', 428 'renderer/content_watcher.cc',
424 'renderer/content_watcher.h', 429 'renderer/content_watcher.h',
425 'renderer/context_menus_custom_bindings.cc', 430 'renderer/context_menus_custom_bindings.cc',
426 'renderer/context_menus_custom_bindings.h', 431 'renderer/context_menus_custom_bindings.h',
427 'renderer/css_native_handler.cc', 432 'renderer/css_native_handler.cc',
428 'renderer/css_native_handler.h', 433 'renderer/css_native_handler.h',
429 'renderer/document_custom_bindings.cc', 434 'renderer/document_custom_bindings.cc',
430 'renderer/document_custom_bindings.h', 435 'renderer/document_custom_bindings.h',
436 'renderer/dom_activity_logger.cc',
437 'renderer/dom_activity_logger.h',
431 'renderer/event_bindings.cc', 438 'renderer/event_bindings.cc',
432 'renderer/event_bindings.h', 439 'renderer/event_bindings.h',
433 'renderer/extensions_renderer_client.cc', 440 'renderer/extensions_renderer_client.cc',
434 'renderer/extensions_renderer_client.h', 441 'renderer/extensions_renderer_client.h',
435 'renderer/extension_groups.h', 442 'renderer/extension_groups.h',
436 'renderer/file_system_natives.cc', 443 'renderer/file_system_natives.cc',
437 'renderer/file_system_natives.h', 444 'renderer/file_system_natives.h',
438 'renderer/i18n_custom_bindings.cc', 445 'renderer/i18n_custom_bindings.cc',
439 'renderer/i18n_custom_bindings.h', 446 'renderer/i18n_custom_bindings.h',
440 'renderer/id_generator_custom_bindings.cc', 447 'renderer/id_generator_custom_bindings.cc',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 'test/test_extensions_client.cc', 554 'test/test_extensions_client.cc',
548 'test/test_extensions_client.h', 555 'test/test_extensions_client.h',
549 'test/test_permission_message_provider.cc', 556 'test/test_permission_message_provider.cc',
550 'test/test_permission_message_provider.h', 557 'test/test_permission_message_provider.h',
551 'test/test_permissions_provider.cc', 558 'test/test_permissions_provider.cc',
552 'test/test_permissions_provider.h', 559 'test/test_permissions_provider.h',
553 ], 560 ],
554 }, 561 },
555 ] 562 ]
556 } 563 }
OLDNEW
« no previous file with comments | « extensions/common/dom_action_types.h ('k') | extensions/renderer/activity_log_converter_strategy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698