| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "midi_manager_win.cc", | 71 "midi_manager_win.cc", |
| 72 "midi_manager_win.h", | 72 "midi_manager_win.h", |
| 73 "midi_message_queue.cc", | 73 "midi_message_queue.cc", |
| 74 "midi_message_queue.h", | 74 "midi_message_queue.h", |
| 75 "midi_message_util.cc", | 75 "midi_message_util.cc", |
| 76 "midi_message_util.h", | 76 "midi_message_util.h", |
| 77 "midi_port_info.cc", | 77 "midi_port_info.cc", |
| 78 "midi_port_info.h", | 78 "midi_port_info.h", |
| 79 "midi_scheduler.cc", | 79 "midi_scheduler.cc", |
| 80 "midi_scheduler.h", | 80 "midi_scheduler.h", |
| 81 "midi_switches.cc", |
| 82 "midi_switches.h", |
| 81 ] | 83 ] |
| 82 | 84 |
| 83 configs += [ ":midi_config" ] | 85 configs += [ ":midi_config" ] |
| 84 | 86 |
| 85 defines = [ "MIDI_IMPLEMENTATION" ] | 87 defines = [ "MIDI_IMPLEMENTATION" ] |
| 86 deps = [ | 88 deps = [ |
| 87 "//base", | 89 "//base", |
| 88 ] | 90 ] |
| 89 libs = [] | 91 libs = [] |
| 90 | 92 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 } | 179 } |
| 178 | 180 |
| 179 if (use_alsa && use_udev) { | 181 if (use_alsa && use_udev) { |
| 180 sources += [ "midi_manager_alsa_unittest.cc" ] | 182 sources += [ "midi_manager_alsa_unittest.cc" ] |
| 181 } | 183 } |
| 182 | 184 |
| 183 if (use_x11) { | 185 if (use_x11) { |
| 184 deps += [ "//tools/xdisplaycheck" ] | 186 deps += [ "//tools/xdisplaycheck" ] |
| 185 } | 187 } |
| 186 } | 188 } |
| OLD | NEW |