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

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

Issue 1103943003: Add components/chrome_apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | chrome/browser/extensions/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 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 assert(enable_extensions) 9 assert(enable_extensions)
10 10
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 sources += 85 sources +=
86 rebase_path(gypi_values.chrome_browser_extensions_chromeos_sources, 86 rebase_path(gypi_values.chrome_browser_extensions_chromeos_sources,
87 ".", 87 ".",
88 "//chrome") 88 "//chrome")
89 sources -= [ "api/music_manager_private/device_id_linux.cc" ] 89 sources -= [ "api/music_manager_private/device_id_linux.cc" ]
90 configs += [ "//build/config/linux:dbus" ] 90 configs += [ "//build/config/linux:dbus" ]
91 deps += [ 91 deps += [
92 "//third_party/libevent", 92 "//third_party/libevent",
93 "//third_party/protobuf:protobuf_lite", 93 "//third_party/protobuf:protobuf_lite",
94 "//chromeos/ime:gencode", 94 "//chromeos/ime:gencode",
95 "//components/chrome_apps",
95 "//remoting/host/it2me:common", 96 "//remoting/host/it2me:common",
96 ] 97 ]
97 } else { 98 } else {
98 sources += [ 99 sources += [
99 "default_apps.cc", 100 "default_apps.cc",
100 "default_apps.h'", 101 "default_apps.h'",
101 ] 102 ]
102 sources += 103 sources +=
103 rebase_path(gypi_values.chrome_browser_extensions_non_chromeos_sources, 104 rebase_path(gypi_values.chrome_browser_extensions_non_chromeos_sources,
104 ".", 105 ".",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 if (is_chromeos && use_ozone) { 198 if (is_chromeos && use_ozone) {
198 sources -= [ "global_shortcut_listener_chromeos.cc" ] 199 sources -= [ "global_shortcut_listener_chromeos.cc" ]
199 } 200 }
200 if (!use_ozone) { 201 if (!use_ozone) {
201 sources -= [ "global_shortcut_listener_ozone.cc" ] 202 sources -= [ "global_shortcut_listener_ozone.cc" ]
202 } 203 }
203 if (enable_media_router) { 204 if (enable_media_router) {
204 defines += [ "ENABLE_MEDIA_ROUTER=1" ] 205 defines += [ "ENABLE_MEDIA_ROUTER=1" ]
205 } 206 }
206 } 207 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698