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

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: Remove Data URI hardcoding, remove deprecated WebKit CSS declarations 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "request_sender.cc", 76 "request_sender.cc",
77 "request_sender.h", 77 "request_sender.h",
78 "resource_bundle_source_map.cc", 78 "resource_bundle_source_map.cc",
79 "resource_bundle_source_map.h", 79 "resource_bundle_source_map.h",
80 "resources/app_runtime_custom_bindings.js", 80 "resources/app_runtime_custom_bindings.js",
81 "resources/app_window_custom_bindings.js", 81 "resources/app_window_custom_bindings.js",
82 "resources/binding.js", 82 "resources/binding.js",
83 "resources/context_menus_custom_bindings.js", 83 "resources/context_menus_custom_bindings.js",
84 "resources/entry_id_manager.js", 84 "resources/entry_id_manager.js",
85 "resources/event.js", 85 "resources/event.js",
86 "resources/extension.css",
86 "resources/extension_custom_bindings.js", 87 "resources/extension_custom_bindings.js",
88 "resources/extension_fonts.css",
87 "resources/greasemonkey_api.js", 89 "resources/greasemonkey_api.js",
88 "resources/i18n_custom_bindings.js", 90 "resources/i18n_custom_bindings.js",
89 "resources/image_util.js", 91 "resources/image_util.js",
90 "resources/json_schema.js", 92 "resources/json_schema.js",
91 "resources/last_error.js", 93 "resources/last_error.js",
92 "resources/messaging.js", 94 "resources/messaging.js",
93 "resources/messaging_utils.js", 95 "resources/messaging_utils.js",
94 "resources/permissions_custom_bindings.js", 96 "resources/permissions_custom_bindings.js",
95 "resources/platform_app.css", 97 "resources/platform_app.css",
96 "resources/platform_app.js", 98 "resources/platform_app.js",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 "send_request_natives.cc", 167 "send_request_natives.cc",
166 ] 168 ]
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698