OLD | NEW |
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 "usb_midi_device_android.cc", | 110 "usb_midi_device_android.cc", |
111 "usb_midi_device_android.h", | 111 "usb_midi_device_android.h", |
112 "usb_midi_device_factory_android.cc", | 112 "usb_midi_device_factory_android.cc", |
113 "usb_midi_device_factory_android.h", | 113 "usb_midi_device_factory_android.h", |
114 ] + usb_midi_sources | 114 ] + usb_midi_sources |
115 | 115 |
116 # Since the USB sources are part of the component. | 116 # Since the USB sources are part of the component. |
117 defines += [ "EXPORT_USB_MIDI" ] | 117 defines += [ "EXPORT_USB_MIDI" ] |
118 | 118 |
119 deps += [ | 119 deps += [ |
| 120 ":midi_jni_headers", |
120 "//base:i18n", | 121 "//base:i18n", |
121 ":midi_jni_headers", | |
122 ] | 122 ] |
123 } | 123 } |
124 | 124 |
125 if (is_mac) { | 125 if (is_mac) { |
126 libs += [ | 126 libs += [ |
127 "CoreAudio.framework", | 127 "CoreAudio.framework", |
128 "CoreMIDI.framework", | 128 "CoreMIDI.framework", |
129 ] | 129 ] |
130 } | 130 } |
131 | 131 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 } | 192 } |
193 | 193 |
194 if (use_alsa && use_udev) { | 194 if (use_alsa && use_udev) { |
195 sources += [ "midi_manager_alsa_unittest.cc" ] | 195 sources += [ "midi_manager_alsa_unittest.cc" ] |
196 } | 196 } |
197 | 197 |
198 if (use_x11) { | 198 if (use_x11) { |
199 deps += [ "//tools/xdisplaycheck" ] | 199 deps += [ "//tools/xdisplaycheck" ] |
200 } | 200 } |
201 } | 201 } |
OLD | NEW |