OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |