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

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

Issue 577453002: Rename ChromeBrowserPluginDelegate to GuestViewContainer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved GuestViewContainer to ENABLE_EXTENSIONS guard 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 # GYP version: extensions/extensions.gyp:extensions_common 7 # GYP version: extensions/extensions.gyp:extensions_common
8 source_set("common") { 8 source_set("common") {
9 sources = [ 9 sources = [
10 "api/messaging/message.h", 10 "api/messaging/message.h",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "features/manifest_feature.cc", 77 "features/manifest_feature.cc",
78 "features/manifest_feature.h", 78 "features/manifest_feature.h",
79 "features/permission_feature.cc", 79 "features/permission_feature.cc",
80 "features/permission_feature.h", 80 "features/permission_feature.h",
81 "features/simple_feature.cc", 81 "features/simple_feature.cc",
82 "features/simple_feature.h", 82 "features/simple_feature.h",
83 "features/simple_feature_filter.cc", 83 "features/simple_feature_filter.cc",
84 "features/simple_feature_filter.h", 84 "features/simple_feature_filter.h",
85 "file_util.cc", 85 "file_util.cc",
86 "file_util.h", 86 "file_util.h",
87 "guest_view/guest_view_constants.cc",
88 "guest_view/guest_view_constants.h",
87 "install_warning.cc", 89 "install_warning.cc",
88 "install_warning.h", 90 "install_warning.h",
89 "manifest.cc", 91 "manifest.cc",
90 "manifest.h", 92 "manifest.h",
91 "manifest_constants.cc", 93 "manifest_constants.cc",
92 "manifest_constants.h", 94 "manifest_constants.h",
93 "manifest_handler.cc", 95 "manifest_handler.cc",
94 "manifest_handler.h", 96 "manifest_handler.h",
95 "manifest_handler_helpers.cc", 97 "manifest_handler_helpers.cc",
96 "manifest_handler_helpers.h", 98 "manifest_handler_helpers.h",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 "manifest_handlers/nacl_modules_handler.h", 251 "manifest_handlers/nacl_modules_handler.h",
250 ] 252 ]
251 } 253 }
252 254
253 if (is_win) { 255 if (is_win) {
254 cflags = [ 256 cflags = [
255 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 257 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
256 ] 258 ]
257 } 259 }
258 } 260 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698