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

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

Issue 2834423002: Web MIDI: rename DynamicallyInitializedMidiManagerWin (Closed)
Patch Set: Created 3 years, 8 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", 145 "midi_manager_win.cc",
146 "dynamically_initialized_midi_manager_win.h", 146 "midi_manager_win.h",
147 "midi_manager_winrt.cc", 147 "midi_manager_winrt.cc",
148 "midi_manager_winrt.h", 148 "midi_manager_winrt.h",
149 ] 149 ]
150 150
151 # This library is included in base in static builds. 151 # This library is included in base in static builds.
152 if (is_component_build) { 152 if (is_component_build) {
153 libs += [ "cfgmgr32.lib" ] 153 libs += [ "cfgmgr32.lib" ]
154 } 154 }
155 } 155 }
156 156
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 libs = [ "CoreMIDI.framework" ] 207 libs = [ "CoreMIDI.framework" ]
208 } 208 }
209 209
210 if (use_alsa && use_udev) { 210 if (use_alsa && use_udev) {
211 sources += [ "midi_manager_alsa_unittest.cc" ] 211 sources += [ "midi_manager_alsa_unittest.cc" ]
212 } 212 }
213 213
214 # This target should not require the Chrome executable to run. 214 # This target should not require the Chrome executable to run.
215 assert_no_deps = [ "//chrome" ] 215 assert_no_deps = [ "//chrome" ]
216 } 216 }
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