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

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

Issue 702433002: Refactor GuestViewContainer to split out WebView related logic and MimeHandlerView related logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "extensions_render_frame_observer.cc", 44 "extensions_render_frame_observer.cc",
45 "extensions_render_frame_observer.h", 45 "extensions_render_frame_observer.h",
46 "extensions_renderer_client.cc", 46 "extensions_renderer_client.cc",
47 "extensions_renderer_client.h", 47 "extensions_renderer_client.h",
48 "file_system_natives.cc", 48 "file_system_natives.cc",
49 "file_system_natives.h", 49 "file_system_natives.h",
50 "guest_view/guest_view_container.cc", 50 "guest_view/guest_view_container.cc",
51 "guest_view/guest_view_container.h", 51 "guest_view/guest_view_container.h",
52 "guest_view/guest_view_internal_custom_bindings.cc", 52 "guest_view/guest_view_internal_custom_bindings.cc",
53 "guest_view/guest_view_internal_custom_bindings.h", 53 "guest_view/guest_view_internal_custom_bindings.h",
54 "guest_view/mime_handler_view_container.cc",
55 "guest_view/mime_handler_view_container.h",
56 "guest_view/web_view_container.cc",
57 "guest_view/web_view_container.h",
54 "i18n_custom_bindings.cc", 58 "i18n_custom_bindings.cc",
55 "i18n_custom_bindings.h", 59 "i18n_custom_bindings.h",
56 "id_generator_custom_bindings.cc", 60 "id_generator_custom_bindings.cc",
57 "id_generator_custom_bindings.h", 61 "id_generator_custom_bindings.h",
58 "lazy_background_page_native_handler.cc", 62 "lazy_background_page_native_handler.cc",
59 "lazy_background_page_native_handler.h", 63 "lazy_background_page_native_handler.h",
60 "logging_native_handler.cc", 64 "logging_native_handler.cc",
61 "logging_native_handler.h", 65 "logging_native_handler.h",
62 "messaging_bindings.cc", 66 "messaging_bindings.cc",
63 "messaging_bindings.h", 67 "messaging_bindings.h",
(...skipping 97 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

Powered by Google App Engine
This is Rietveld 408576698