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

Side by Side Diff: extensions/renderer/BUILD.gn

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/extensions.gyp ('k') | extensions/renderer/api/automation/automation_api_helper.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 assert(enable_extensions) 7 assert(enable_extensions)
8 8
9 # GYP version: extensions/extensions.gyp:extensions_renderer 9 # GYP version: extensions/extensions.gyp:extensions_renderer
10 source_set("renderer") { 10 source_set("renderer") {
11 sources = [ 11 sources = [
12 "activity_log_converter_strategy.cc", 12 "activity_log_converter_strategy.cc",
13 "activity_log_converter_strategy.h", 13 "activity_log_converter_strategy.h",
14 "api/automation/automation_api_helper.cc",
15 "api/automation/automation_api_helper.h",
14 "api_activity_logger.cc", 16 "api_activity_logger.cc",
15 "api_activity_logger.h", 17 "api_activity_logger.h",
16 "api_definitions_natives.cc", 18 "api_definitions_natives.cc",
17 "api_definitions_natives.h", 19 "api_definitions_natives.h",
18 "app_runtime_custom_bindings.cc", 20 "app_runtime_custom_bindings.cc",
19 "app_runtime_custom_bindings.h", 21 "app_runtime_custom_bindings.h",
20 "app_window_custom_bindings.cc", 22 "app_window_custom_bindings.cc",
21 "app_window_custom_bindings.h", 23 "app_window_custom_bindings.h",
22 "binding_generating_native_handler.cc", 24 "binding_generating_native_handler.cc",
23 "binding_generating_native_handler.h", 25 "binding_generating_native_handler.h",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 "//skia", 167 "//skia",
166 "//third_party/WebKit/public:blink", 168 "//third_party/WebKit/public:blink",
167 ] 169 ]
168 170
169 if (is_win) { 171 if (is_win) {
170 cflags = [ 172 cflags = [
171 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 173 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
172 ] 174 ]
173 } 175 }
174 } 176 }
OLDNEW
« no previous file with comments | « extensions/extensions.gyp ('k') | extensions/renderer/api/automation/automation_api_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698