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

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

Issue 505853003: Work on GN build of Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl try 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
« no previous file with comments | « extensions/extensions.gyp ('k') | media/audio/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 20 matching lines...) Expand all
31 "dispatcher.h", 31 "dispatcher.h",
32 "dispatcher_delegate.h", 32 "dispatcher_delegate.h",
33 "document_custom_bindings.cc", 33 "document_custom_bindings.cc",
34 "document_custom_bindings.h", 34 "document_custom_bindings.h",
35 "dom_activity_logger.cc", 35 "dom_activity_logger.cc",
36 "dom_activity_logger.h", 36 "dom_activity_logger.h",
37 "event_bindings.cc", 37 "event_bindings.cc",
38 "event_bindings.h", 38 "event_bindings.h",
39 "extension_helper.cc", 39 "extension_helper.cc",
40 "extension_helper.h", 40 "extension_helper.h",
41 "extensions_render_frame_observer.cc",
42 "extensions_render_frame_observer.h",
41 "extensions_renderer_client.cc", 43 "extensions_renderer_client.cc",
42 "extensions_renderer_client.h", 44 "extensions_renderer_client.h",
43 "extension_groups.h", 45 "extension_groups.h",
46 "guest_view/guest_view_internal_custom_bindings.cc",
47 "guest_view/guest_view_internal_custom_bindings.h",
44 "file_system_natives.cc", 48 "file_system_natives.cc",
45 "file_system_natives.h", 49 "file_system_natives.h",
46 "i18n_custom_bindings.cc", 50 "i18n_custom_bindings.cc",
47 "i18n_custom_bindings.h", 51 "i18n_custom_bindings.h",
48 "id_generator_custom_bindings.cc", 52 "id_generator_custom_bindings.cc",
49 "id_generator_custom_bindings.h", 53 "id_generator_custom_bindings.h",
50 "lazy_background_page_native_handler.cc", 54 "lazy_background_page_native_handler.cc",
51 "lazy_background_page_native_handler.h", 55 "lazy_background_page_native_handler.h",
52 "logging_native_handler.cc", 56 "logging_native_handler.cc",
53 "logging_native_handler.h", 57 "logging_native_handler.h",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "send_request_natives.cc", 162 "send_request_natives.cc",
159 ] 163 ]
160 } 164 }
161 165
162 if (is_win) { 166 if (is_win) {
163 cflags = [ 167 cflags = [
164 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 168 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
165 ] 169 ]
166 } 170 }
167 } 171 }
OLDNEW
« no previous file with comments | « extensions/extensions.gyp ('k') | media/audio/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698