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

Side by Side Diff: media/midi/BUILD.gn

Issue 2318953002: Replace Setup API with PnP Configuration Manager in MidiManagerWinrt (Closed)
Patch Set: Created 4 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 | « no previous file | media/midi/midi_manager_winrt.cc » ('j') | media/midi/midi_manager_winrt.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/android/config.gni") 5 import("//build/config/android/config.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("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 if (is_mac) { 130 if (is_mac) {
131 libs += [ 131 libs += [
132 "CoreAudio.framework", 132 "CoreAudio.framework",
133 "CoreFoundation.framework", 133 "CoreFoundation.framework",
134 "CoreMIDI.framework", 134 "CoreMIDI.framework",
135 ] 135 ]
136 } 136 }
137 137
138 if (is_win) { 138 if (is_win) {
139 deps += [ "//device/usb" ] 139 deps += [ "//device/usb" ]
140 libs += [ "cfgmgr32.lib" ]
Shao-Chuan Lee 2016/09/07 08:26:52 This library is available since Windows 2000, and
Shao-Chuan Lee 2016/09/07 09:01:05 Not very familiar with GN, but it looks like media
Takashi Toyoshima 2016/09/07 10:17:02 Probably, we do not need this? Or need only on is_
Shao-Chuan Lee 2016/09/08 06:29:45 This is required in component build, and adding th
140 sources += [ 141 sources += [
141 "midi_manager_win.cc", 142 "midi_manager_win.cc",
142 "midi_manager_win.h", 143 "midi_manager_win.h",
143 "midi_manager_winrt.cc", 144 "midi_manager_winrt.cc",
144 "midi_manager_winrt.h", 145 "midi_manager_winrt.h",
145 ] 146 ]
146 } 147 }
147 148
148 if (use_alsa && use_udev) { 149 if (use_alsa && use_udev) {
149 deps += [ 150 deps += [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 sources += [ "midi_manager_alsa_unittest.cc" ] 197 sources += [ "midi_manager_alsa_unittest.cc" ]
197 } 198 }
198 199
199 if (use_x11) { 200 if (use_x11) {
200 deps += [ "//tools/xdisplaycheck" ] 201 deps += [ "//tools/xdisplaycheck" ]
201 } 202 }
202 203
203 # This target should not require the Chrome executable to run. 204 # This target should not require the Chrome executable to run.
204 assert_no_deps = [ "//chrome" ] 205 assert_no_deps = [ "//chrome" ]
205 } 206 }
OLDNEW
« no previous file with comments | « no previous file | media/midi/midi_manager_winrt.cc » ('j') | media/midi/midi_manager_winrt.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698