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

Side by Side Diff: extensions/extensions.gyp

Issue 655273005: Implement AutomationNode.querySelector(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix heap-use-after-free issue by not keeping a scoped_ptr to automation_api_helper in extension_hel… Created 6 years, 1 month 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 | « extensions/common/extension_messages.h ('k') | extensions/renderer/BUILD.gn » ('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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 '../mojo/public/mojo_public.gyp:mojo_js_bindings', 815 '../mojo/public/mojo_public.gyp:mojo_js_bindings',
816 '../third_party/WebKit/public/blink.gyp:blink', 816 '../third_party/WebKit/public/blink.gyp:blink',
817 ], 817 ],
818 'include_dirs': [ 818 'include_dirs': [
819 '..', 819 '..',
820 ], 820 ],
821 'sources': [ 821 'sources': [
822 # Note: sources list duplicated in GN build. 822 # Note: sources list duplicated in GN build.
823 'renderer/activity_log_converter_strategy.cc', 823 'renderer/activity_log_converter_strategy.cc',
824 'renderer/activity_log_converter_strategy.h', 824 'renderer/activity_log_converter_strategy.h',
825 'renderer/api/automation/automation_api_helper.cc',
826 'renderer/api/automation/automation_api_helper.h',
825 'renderer/api_activity_logger.cc', 827 'renderer/api_activity_logger.cc',
826 'renderer/api_activity_logger.h', 828 'renderer/api_activity_logger.h',
827 'renderer/api_definitions_natives.cc', 829 'renderer/api_definitions_natives.cc',
828 'renderer/api_definitions_natives.h', 830 'renderer/api_definitions_natives.h',
829 'renderer/app_runtime_custom_bindings.cc', 831 'renderer/app_runtime_custom_bindings.cc',
830 'renderer/app_runtime_custom_bindings.h', 832 'renderer/app_runtime_custom_bindings.h',
831 'renderer/app_window_custom_bindings.cc', 833 'renderer/app_window_custom_bindings.cc',
832 'renderer/app_window_custom_bindings.h', 834 'renderer/app_window_custom_bindings.h',
833 'renderer/binding_generating_native_handler.cc', 835 'renderer/binding_generating_native_handler.cc',
834 'renderer/binding_generating_native_handler.h', 836 'renderer/binding_generating_native_handler.h',
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 'conditions': [ 1221 'conditions': [
1220 ['OS=="win" and win_use_allocator_shim==1', { 1222 ['OS=="win" and win_use_allocator_shim==1', {
1221 'dependencies': [ 1223 'dependencies': [
1222 '../base/allocator/allocator.gyp:allocator', 1224 '../base/allocator/allocator.gyp:allocator',
1223 ], 1225 ],
1224 }], 1226 }],
1225 ], 1227 ],
1226 }, 1228 },
1227 ] 1229 ]
1228 } 1230 }
OLDNEW
« no previous file with comments | « extensions/common/extension_messages.h ('k') | extensions/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698