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

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

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698