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

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

Issue 2566673002: Web MIDI: introduce MidiService class (Closed)
Patch Set: merge master Created 4 years 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 | « content/browser/renderer_host/render_process_host_impl.cc ('k') | media/midi/midi_manager.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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 "midi_manager.cc", 81 "midi_manager.cc",
82 "midi_manager.h", 82 "midi_manager.h",
83 "midi_manager_mac.cc", 83 "midi_manager_mac.cc",
84 "midi_manager_mac.h", 84 "midi_manager_mac.h",
85 "midi_message_queue.cc", 85 "midi_message_queue.cc",
86 "midi_message_queue.h", 86 "midi_message_queue.h",
87 "midi_port_info.cc", 87 "midi_port_info.cc",
88 "midi_port_info.h", 88 "midi_port_info.h",
89 "midi_scheduler.cc", 89 "midi_scheduler.cc",
90 "midi_scheduler.h", 90 "midi_scheduler.h",
91 "midi_service.cc",
92 "midi_service.h",
91 "midi_switches.cc", 93 "midi_switches.cc",
92 "midi_switches.h", 94 "midi_switches.h",
93 ] 95 ]
94 96
95 configs += [ ":midi_config" ] 97 configs += [ ":midi_config" ]
96 98
97 defines = [ "MIDI_IMPLEMENTATION" ] 99 defines = [ "MIDI_IMPLEMENTATION" ]
98 deps = [ 100 deps = [
99 ":mojo", 101 ":mojo",
100 "//base", 102 "//base",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 libs = [ "CoreMIDI.framework" ] 207 libs = [ "CoreMIDI.framework" ]
206 } 208 }
207 209
208 if (use_alsa && use_udev) { 210 if (use_alsa && use_udev) {
209 sources += [ "midi_manager_alsa_unittest.cc" ] 211 sources += [ "midi_manager_alsa_unittest.cc" ]
210 } 212 }
211 213
212 # This target should not require the Chrome executable to run. 214 # This target should not require the Chrome executable to run.
213 assert_no_deps = [ "//chrome" ] 215 assert_no_deps = [ "//chrome" ]
214 } 216 }
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | media/midi/midi_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698