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

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

Issue 494033002: Move AppWindow to extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unneeded include in chrome_shell_delegate.cc 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/testing_browser_process.cc ('k') | extensions/browser/DEPS » ('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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 "//components/keyed_service/content", 14 "//components/keyed_service/content",
15 "//components/keyed_service/core", 15 "//components/keyed_service/core",
16 "//components/pref_registry", 16 "//components/pref_registry",
17 "//components/sessions",
17 "//components/web_modal", 18 "//components/web_modal",
18 "//content/public/browser", 19 "//content/public/browser",
19 "//extensions/common", 20 "//extensions/common",
20 "//extensions/common/api", 21 "//extensions/common/api",
21 "//extensions/common/api:api_registration", 22 "//extensions/common/api:api_registration",
22 "//extensions/strings", 23 "//extensions/strings",
23 "//skia", 24 "//skia",
24 "//third_party/leveldatabase", 25 "//third_party/leveldatabase",
25 ] 26 ]
26 27
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 "api/usb/usb_api.h", 127 "api/usb/usb_api.h",
127 "api/usb/usb_device_resource.cc", 128 "api/usb/usb_device_resource.cc",
128 "api/usb/usb_device_resource.h", 129 "api/usb/usb_device_resource.h",
129 "api/usb_private/usb_private_api.cc", 130 "api/usb_private/usb_private_api.cc",
130 "api/usb_private/usb_private_api.h", 131 "api/usb_private/usb_private_api.h",
131 "api_activity_monitor.h", 132 "api_activity_monitor.h",
132 "app_sorting.h", 133 "app_sorting.h",
133 "app_window/app_delegate.h", 134 "app_window/app_delegate.h",
134 "app_window/app_web_contents_helper.cc", 135 "app_window/app_web_contents_helper.cc",
135 "app_window/app_web_contents_helper.h", 136 "app_window/app_web_contents_helper.h",
137 "app_window/app_window.cc",
138 "app_window/app_window.h",
136 "app_window/app_window_geometry_cache.cc", 139 "app_window/app_window_geometry_cache.cc",
137 "app_window/app_window_geometry_cache.h", 140 "app_window/app_window_geometry_cache.h",
141 "app_window/app_window_registry.cc",
142 "app_window/app_window_registry.h",
143 "app_window/apps_client.cc",
144 "app_window/apps_client.h",
138 "app_window/native_app_window.h", 145 "app_window/native_app_window.h",
139 "app_window/size_constraints.cc", 146 "app_window/size_constraints.cc",
140 "app_window/size_constraints.h", 147 "app_window/size_constraints.h",
141 "blacklist_state.h", 148 "blacklist_state.h",
142 "blob_holder.cc", 149 "blob_holder.cc",
143 "blob_holder.h", 150 "blob_holder.h",
144 "browser_context_keyed_api_factory.h", 151 "browser_context_keyed_api_factory.h",
145 "browser_context_keyed_service_factories.cc", 152 "browser_context_keyed_service_factories.cc",
146 "browser_context_keyed_service_factories.h", 153 "browser_context_keyed_service_factories.h",
147 "component_extension_resource_manager.h", 154 "component_extension_resource_manager.h",
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 ] 319 ]
313 } 320 }
314 } 321 }
315 322
316 if (is_win) { 323 if (is_win) {
317 cflags = [ 324 cflags = [
318 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 325 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
319 ] 326 ]
320 } 327 }
321 } 328 }
OLDNEW
« no previous file with comments | « chrome/test/base/testing_browser_process.cc ('k') | extensions/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698