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

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

Issue 434243003: extensions: Add GN version of extensions_shell_and_test_pak and unittests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO + REBASE Created 6 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « extensions/extensions.gyp ('k') | extensions/shell/BUILD.gn » ('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 # 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",
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "static_v8_external_ascii_string_resource.cc", 119 "static_v8_external_ascii_string_resource.cc",
120 "static_v8_external_ascii_string_resource.h", 120 "static_v8_external_ascii_string_resource.h",
121 "test_features_native_handler.cc", 121 "test_features_native_handler.cc",
122 "test_features_native_handler.h", 122 "test_features_native_handler.h",
123 "user_gestures_native_handler.cc", 123 "user_gestures_native_handler.cc",
124 "user_gestures_native_handler.h", 124 "user_gestures_native_handler.h",
125 "user_script_injector.cc", 125 "user_script_injector.cc",
126 "user_script_injector.h", 126 "user_script_injector.h",
127 "user_script_set.cc", 127 "user_script_set.cc",
128 "user_script_set.h", 128 "user_script_set.h",
129 "user_script_set_manager.cc",
130 "user_script_set_manager.h",
129 "utils_native_handler.cc", 131 "utils_native_handler.cc",
130 "utils_native_handler.h", 132 "utils_native_handler.h",
131 "v8_context_native_handler.cc", 133 "v8_context_native_handler.cc",
132 "v8_context_native_handler.h", 134 "v8_context_native_handler.h",
133 "v8_schema_registry.cc", 135 "v8_schema_registry.cc",
134 "v8_schema_registry.h", 136 "v8_schema_registry.h",
135 ] 137 ]
136 138
137 deps = [ 139 deps = [
138 "//chrome:resources", 140 "//chrome:resources",
(...skipping 17 matching lines...) Expand all
156 "send_request_natives.cc", 158 "send_request_natives.cc",
157 ] 159 ]
158 } 160 }
159 161
160 if (is_win) { 162 if (is_win) {
161 cflags = [ 163 cflags = [
162 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 164 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
163 ] 165 ]
164 } 166 }
165 } 167 }
OLDNEW
« no previous file with comments | « extensions/extensions.gyp ('k') | extensions/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698