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

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

Issue 672403002: Cleanup: Remove most enable_extensions logic in extensions code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android 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_resources.gyp ('k') | extensions/renderer/dispatcher.cc » ('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")
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
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 }
OLDNEW
« no previous file with comments | « extensions/extensions_resources.gyp ('k') | extensions/renderer/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698