| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 125 |
| 126 deps += [ | 126 deps += [ |
| 127 ":midi_jni_headers", | 127 ":midi_jni_headers", |
| 128 "//base:i18n", | 128 "//base:i18n", |
| 129 ] | 129 ] |
| 130 } | 130 } |
| 131 | 131 |
| 132 if (is_mac) { | 132 if (is_mac) { |
| 133 libs += [ | 133 libs += [ |
| 134 "CoreAudio.framework", | 134 "CoreAudio.framework", |
| 135 "CoreFoundation.framework", |
| 135 "CoreMIDI.framework", | 136 "CoreMIDI.framework", |
| 136 ] | 137 ] |
| 137 } | 138 } |
| 138 | 139 |
| 139 if (is_win) { | 140 if (is_win) { |
| 140 deps += [ "//device/usb" ] | 141 deps += [ "//device/usb" ] |
| 141 } | 142 } |
| 142 | 143 |
| 143 if (use_alsa && use_udev) { | 144 if (use_alsa && use_udev) { |
| 144 deps += [ | 145 deps += [ |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 } | 188 } |
| 188 | 189 |
| 189 if (use_alsa && use_udev) { | 190 if (use_alsa && use_udev) { |
| 190 sources += [ "midi_manager_alsa_unittest.cc" ] | 191 sources += [ "midi_manager_alsa_unittest.cc" ] |
| 191 } | 192 } |
| 192 | 193 |
| 193 if (use_x11) { | 194 if (use_x11) { |
| 194 deps += [ "//tools/xdisplaycheck" ] | 195 deps += [ "//tools/xdisplaycheck" ] |
| 195 } | 196 } |
| 196 } | 197 } |
| OLD | NEW |