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") |
| 6 |
| 7 assert(enable_extensions) |
| 8 |
5 # GYP version: extensions/extensions.gyp:extensions_renderer | 9 # GYP version: extensions/extensions.gyp:extensions_renderer |
6 source_set("renderer") { | 10 source_set("renderer") { |
7 sources = [ | 11 sources = [ |
8 "activity_log_converter_strategy.cc", | 12 "activity_log_converter_strategy.cc", |
9 "activity_log_converter_strategy.h", | 13 "activity_log_converter_strategy.h", |
10 "api_activity_logger.cc", | 14 "api_activity_logger.cc", |
11 "api_activity_logger.h", | 15 "api_activity_logger.h", |
12 "api_definitions_natives.cc", | 16 "api_definitions_natives.cc", |
13 "api_definitions_natives.h", | 17 "api_definitions_natives.h", |
14 "app_runtime_custom_bindings.cc", | 18 "app_runtime_custom_bindings.cc", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "//skia", | 165 "//skia", |
162 "//third_party/WebKit/public:blink", | 166 "//third_party/WebKit/public:blink", |
163 ] | 167 ] |
164 | 168 |
165 if (is_win) { | 169 if (is_win) { |
166 cflags = [ | 170 cflags = [ |
167 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 171 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
168 ] | 172 ] |
169 } | 173 } |
170 } | 174 } |
OLD | NEW |