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

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

Issue 2352013002: MidiManagerWinrt as base::FeatureList feature (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
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "java/src/org/chromium/media/midi/UsbMidiDeviceAndroid.java", 68 "java/src/org/chromium/media/midi/UsbMidiDeviceAndroid.java",
69 "java/src/org/chromium/media/midi/UsbMidiDeviceFactoryAndroid.java", 69 "java/src/org/chromium/media/midi/UsbMidiDeviceFactoryAndroid.java",
70 ] 70 ]
71 jni_package = "media/midi" 71 jni_package = "media/midi"
72 } 72 }
73 } 73 }
74 74
75 component("midi") { 75 component("midi") {
76 sources = [ 76 sources = [
77 "midi_export.h", 77 "midi_export.h",
78 "midi_features.cc",
79 "midi_features.h",
78 "midi_manager.cc", 80 "midi_manager.cc",
79 "midi_manager.h", 81 "midi_manager.h",
80 "midi_manager_mac.cc", 82 "midi_manager_mac.cc",
81 "midi_manager_mac.h", 83 "midi_manager_mac.h",
82 "midi_message_queue.cc", 84 "midi_message_queue.cc",
83 "midi_message_queue.h", 85 "midi_message_queue.h",
84 "midi_message_util.cc", 86 "midi_message_util.cc",
85 "midi_message_util.h", 87 "midi_message_util.h",
86 "midi_port_info.cc", 88 "midi_port_info.cc",
87 "midi_port_info.h", 89 "midi_port_info.h",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 sources += [ "midi_manager_alsa_unittest.cc" ] 203 sources += [ "midi_manager_alsa_unittest.cc" ]
202 } 204 }
203 205
204 if (use_x11) { 206 if (use_x11) {
205 deps += [ "//tools/xdisplaycheck" ] 207 deps += [ "//tools/xdisplaycheck" ]
206 } 208 }
207 209
208 # This target should not require the Chrome executable to run. 210 # This target should not require the Chrome executable to run.
209 assert_no_deps = [ "//chrome" ] 211 assert_no_deps = [ "//chrome" ]
210 } 212 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698