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

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

Issue 2686043003: [not for review] Web MIDI: new backend to support dynamic instantiation on Windows (Closed)
Patch Set: not for review (rebase/rename/LazyInstance) Created 3 years, 10 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/dynamically_initialized_midi_manager_win.h » ('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 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("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 libs += [ 135 libs += [
136 "CoreAudio.framework", 136 "CoreAudio.framework",
137 "CoreFoundation.framework", 137 "CoreFoundation.framework",
138 "CoreMIDI.framework", 138 "CoreMIDI.framework",
139 ] 139 ]
140 } 140 }
141 141
142 if (is_win) { 142 if (is_win) {
143 deps += [ "//device/usb" ] 143 deps += [ "//device/usb" ]
144 sources += [ 144 sources += [
145 "dynamically_initialized_midi_manager_win.cc",
146 "dynamically_initialized_midi_manager_win.h",
145 "midi_manager_win.cc", 147 "midi_manager_win.cc",
146 "midi_manager_win.h", 148 "midi_manager_win.h",
147 "midi_manager_winrt.cc", 149 "midi_manager_winrt.cc",
148 "midi_manager_winrt.h", 150 "midi_manager_winrt.h",
149 ] 151 ]
150 152
151 # This library is included in base in static builds. 153 # This library is included in base in static builds.
152 if (is_component_build) { 154 if (is_component_build) {
153 libs += [ "cfgmgr32.lib" ] 155 libs += [ "cfgmgr32.lib" ]
154 } 156 }
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 libs = [ "CoreMIDI.framework" ] 209 libs = [ "CoreMIDI.framework" ]
208 } 210 }
209 211
210 if (use_alsa && use_udev) { 212 if (use_alsa && use_udev) {
211 sources += [ "midi_manager_alsa_unittest.cc" ] 213 sources += [ "midi_manager_alsa_unittest.cc" ]
212 } 214 }
213 215
214 # This target should not require the Chrome executable to run. 216 # This target should not require the Chrome executable to run.
215 assert_no_deps = [ "//chrome" ] 217 assert_no_deps = [ "//chrome" ]
216 } 218 }
OLDNEW
« no previous file with comments | « no previous file | media/midi/dynamically_initialized_midi_manager_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698