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

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

Issue 537773003: Add a user agent stylesheet for extension options pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 "render_view_observer_natives.h", 73 "render_view_observer_natives.h",
74 "request_sender.cc", 74 "request_sender.cc",
75 "request_sender.h", 75 "request_sender.h",
76 "resource_bundle_source_map.cc", 76 "resource_bundle_source_map.cc",
77 "resource_bundle_source_map.h", 77 "resource_bundle_source_map.h",
78 "resources/app_runtime_custom_bindings.js", 78 "resources/app_runtime_custom_bindings.js",
79 "resources/binding.js", 79 "resources/binding.js",
80 "resources/context_menus_custom_bindings.js", 80 "resources/context_menus_custom_bindings.js",
81 "resources/entry_id_manager.js", 81 "resources/entry_id_manager.js",
82 "resources/event.js", 82 "resources/event.js",
83 "resources/extension.css",
83 "resources/extension_custom_bindings.js", 84 "resources/extension_custom_bindings.js",
85 "resources/extension_fonts.css",
84 "resources/greasemonkey_api.js", 86 "resources/greasemonkey_api.js",
85 "resources/i18n_custom_bindings.js", 87 "resources/i18n_custom_bindings.js",
86 "resources/image_util.js", 88 "resources/image_util.js",
87 "resources/json_schema.js", 89 "resources/json_schema.js",
88 "resources/last_error.js", 90 "resources/last_error.js",
89 "resources/messaging.js", 91 "resources/messaging.js",
90 "resources/messaging_utils.js", 92 "resources/messaging_utils.js",
91 "resources/permissions_custom_bindings.js", 93 "resources/permissions_custom_bindings.js",
92 "resources/platform_app.css", 94 "resources/platform_app.css",
93 "resources/platform_app.js", 95 "resources/platform_app.js",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 "send_request_natives.cc", 164 "send_request_natives.cc",
163 ] 165 ]
164 } 166 }
165 167
166 if (is_win) { 168 if (is_win) {
167 cflags = [ 169 cflags = [
168 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 170 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
169 ] 171 ]
170 } 172 }
171 } 173 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698