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

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

Issue 576863003: Componentize NativeAppWindowViews (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « chrome/app/generated_resources.grd ('k') | chrome/browser/about_flags.cc » ('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 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//components/nacl/nacl_defines.gni") 8 import("//components/nacl/nacl_defines.gni")
9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
10 # produces a conflict for the "grit" template so we have to only include one. 10 # produces a conflict for the "grit" template so we have to only include one.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "//components/feedback", 61 "//components/feedback",
62 "//components/gcm_driver", 62 "//components/gcm_driver",
63 "//components/google/core/browser", 63 "//components/google/core/browser",
64 "//components/history/core/browser", 64 "//components/history/core/browser",
65 "//components/history/core/common", 65 "//components/history/core/common",
66 "//components/infobars/core", 66 "//components/infobars/core",
67 "//components/invalidation", 67 "//components/invalidation",
68 "//components/metrics:gpu", 68 "//components/metrics:gpu",
69 "//components/metrics:net", 69 "//components/metrics:net",
70 "//components/metrics/proto:proto", 70 "//components/metrics/proto:proto",
71 "//components/native_app_window",
71 "//components/navigation_metrics", 72 "//components/navigation_metrics",
72 "//components/network_time", 73 "//components/network_time",
73 "//components/omaha_query_params", 74 "//components/omaha_query_params",
74 "//components/omnibox", 75 "//components/omnibox",
75 "//components/os_crypt", 76 "//components/os_crypt",
76 "//components/password_manager/core/browser", 77 "//components/password_manager/core/browser",
77 "//components/password_manager/core/common", 78 "//components/password_manager/core/common",
78 "//components/policy:policy_component", 79 "//components/policy:policy_component",
79 "//components/precache/core", 80 "//components/precache/core",
80 "//components/query_parser", 81 "//components/query_parser",
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 "download/download_dir_policy_handler.h", 223 "download/download_dir_policy_handler.h",
223 ] 224 ]
224 } 225 }
225 if (is_mac) { 226 if (is_mac) {
226 sources += rebase_path(gypi_values.chrome_browser_mac_sources, 227 sources += rebase_path(gypi_values.chrome_browser_mac_sources,
227 ".", "//chrome") 228 ".", "//chrome")
228 deps += [ 229 deps += [
229 #"app_shim" TODO(GYP) 230 #"app_shim" TODO(GYP)
230 ] 231 ]
231 } 232 }
233 if (!toolkit_views) {
234 deps -= [ "//components/native_app_window" ]
235 }
232 if (cld2_data_source == "component") { 236 if (cld2_data_source == "component") {
233 sources += [ 237 sources += [
234 "component_updater/cld_component_installer.cc", 238 "component_updater/cld_component_installer.cc",
235 "component_updater/cld_component_installer.h", 239 "component_updater/cld_component_installer.h",
236 ] 240 ]
237 } 241 }
238 if (enable_extensions) { 242 if (enable_extensions) {
239 deps += [ 243 deps += [
240 "//chrome/browser/extensions", 244 "//chrome/browser/extensions",
241 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr oto", 245 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr oto",
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 ] 928 ]
925 } 929 }
926 930
927 if (enable_wifi_bootstrapping) { 931 if (enable_wifi_bootstrapping) {
928 sources += [ 932 sources += [
929 "local_discovery/wifi/mock_wifi_manager.cc", 933 "local_discovery/wifi/mock_wifi_manager.cc",
930 "local_discovery/wifi/mock_wifi_manager.h", 934 "local_discovery/wifi/mock_wifi_manager.h",
931 ] 935 ]
932 } 936 }
933 } 937 }
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698