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

Side by Side Diff: extensions/extensions.gyp

Issue 655273005: Implement AutomationNode.querySelector(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: devlin review comments 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
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 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 '../mojo/public/mojo_public.gyp:mojo_js_bindings', 829 '../mojo/public/mojo_public.gyp:mojo_js_bindings',
830 '../third_party/WebKit/public/blink.gyp:blink', 830 '../third_party/WebKit/public/blink.gyp:blink',
831 ], 831 ],
832 'include_dirs': [ 832 'include_dirs': [
833 '..', 833 '..',
834 ], 834 ],
835 'sources': [ 835 'sources': [
836 # Note: sources list duplicated in GN build. 836 # Note: sources list duplicated in GN build.
837 'renderer/activity_log_converter_strategy.cc', 837 'renderer/activity_log_converter_strategy.cc',
838 'renderer/activity_log_converter_strategy.h', 838 'renderer/activity_log_converter_strategy.h',
839 'renderer/api/automation/automation_api_helper.cc',
840 'renderer/api/automation/automation_api_helper.h',
839 'renderer/api_activity_logger.cc', 841 'renderer/api_activity_logger.cc',
840 'renderer/api_activity_logger.h', 842 'renderer/api_activity_logger.h',
841 'renderer/api_definitions_natives.cc', 843 'renderer/api_definitions_natives.cc',
842 'renderer/api_definitions_natives.h', 844 'renderer/api_definitions_natives.h',
843 'renderer/app_runtime_custom_bindings.cc', 845 'renderer/app_runtime_custom_bindings.cc',
844 'renderer/app_runtime_custom_bindings.h', 846 'renderer/app_runtime_custom_bindings.h',
845 'renderer/app_window_custom_bindings.cc', 847 'renderer/app_window_custom_bindings.cc',
846 'renderer/app_window_custom_bindings.h', 848 'renderer/app_window_custom_bindings.h',
847 'renderer/binding_generating_native_handler.cc', 849 'renderer/binding_generating_native_handler.cc',
848 'renderer/binding_generating_native_handler.h', 850 'renderer/binding_generating_native_handler.h',
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1226 'conditions': [ 1228 'conditions': [
1227 ['OS=="win" and win_use_allocator_shim==1', { 1229 ['OS=="win" and win_use_allocator_shim==1', {
1228 'dependencies': [ 1230 'dependencies': [
1229 '../base/allocator/allocator.gyp:allocator', 1231 '../base/allocator/allocator.gyp:allocator',
1230 ], 1232 ],
1231 }], 1233 }],
1232 ], 1234 ],
1233 }, 1235 },
1234 ] 1236 ]
1235 } 1237 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698