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

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: 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 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 # GYP version: extensions/extensions.gyp:extensions_renderer 5 # GYP version: extensions/extensions.gyp:extensions_renderer
6 source_set("renderer") { 6 source_set("renderer") {
7 sources = [ 7 sources = [
8 "activity_log_converter_strategy.cc", 8 "activity_log_converter_strategy.cc",
9 "activity_log_converter_strategy.h", 9 "activity_log_converter_strategy.h",
10 "api_activity_logger.cc", 10 "api_activity_logger.cc",
11 "api_activity_logger.h", 11 "api_activity_logger.h",
12 "api_definitions_natives.cc", 12 "api_definitions_natives.cc",
13 "api_definitions_natives.h", 13 "api_definitions_natives.h",
14 "app_runtime_custom_bindings.cc", 14 "app_runtime_custom_bindings.cc",
15 "app_runtime_custom_bindings.h", 15 "app_runtime_custom_bindings.h",
16 "app_window_custom_bindings.cc", 16 "app_window_custom_bindings.cc",
17 "app_window_custom_bindings.h", 17 "app_window_custom_bindings.h",
18 "automation_api_helper.cc",
19 "automation_api_helper.h",
18 "binding_generating_native_handler.cc", 20 "binding_generating_native_handler.cc",
19 "binding_generating_native_handler.h", 21 "binding_generating_native_handler.h",
20 "blob_native_handler.cc", 22 "blob_native_handler.cc",
21 "blob_native_handler.h", 23 "blob_native_handler.h",
22 "console.cc", 24 "console.cc",
23 "console.h", 25 "console.h",
24 "content_watcher.cc", 26 "content_watcher.cc",
25 "content_watcher.h", 27 "content_watcher.h",
26 "context_menus_custom_bindings.cc", 28 "context_menus_custom_bindings.cc",
27 "context_menus_custom_bindings.h", 29 "context_menus_custom_bindings.h",
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 "//skia", 163 "//skia",
162 "//third_party/WebKit/public:blink", 164 "//third_party/WebKit/public:blink",
163 ] 165 ]
164 166
165 if (is_win) { 167 if (is_win) {
166 cflags = [ 168 cflags = [
167 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 169 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
168 ] 170 ]
169 } 171 }
170 } 172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698