| 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("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 166 |
| 167 if (use_udev) { | 167 if (use_udev) { |
| 168 deps += [ "//device/udev_linux" ] | 168 deps += [ "//device/udev_linux" ] |
| 169 } | 169 } |
| 170 } | 170 } |
| 171 | 171 |
| 172 mojom("mojo") { | 172 mojom("mojo") { |
| 173 sources = [ | 173 sources = [ |
| 174 "midi_service.mojom", | 174 "midi_service.mojom", |
| 175 ] | 175 ] |
| 176 use_new_wrapper_types = true | |
| 177 } | 176 } |
| 178 | 177 |
| 179 test("midi_unittests") { | 178 test("midi_unittests") { |
| 180 sources = [ | 179 sources = [ |
| 181 "message_util_unittest.cc", | 180 "message_util_unittest.cc", |
| 182 "midi_manager_unittest.cc", | 181 "midi_manager_unittest.cc", |
| 183 "midi_manager_usb_unittest.cc", | 182 "midi_manager_usb_unittest.cc", |
| 184 "midi_message_queue_unittest.cc", | 183 "midi_message_queue_unittest.cc", |
| 185 "usb_midi_descriptor_parser_unittest.cc", | 184 "usb_midi_descriptor_parser_unittest.cc", |
| 186 "usb_midi_input_stream_unittest.cc", | 185 "usb_midi_input_stream_unittest.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 210 sources += [ "midi_manager_alsa_unittest.cc" ] | 209 sources += [ "midi_manager_alsa_unittest.cc" ] |
| 211 } | 210 } |
| 212 | 211 |
| 213 if (use_x11) { | 212 if (use_x11) { |
| 214 deps += [ "//tools/xdisplaycheck" ] | 213 deps += [ "//tools/xdisplaycheck" ] |
| 215 } | 214 } |
| 216 | 215 |
| 217 # This target should not require the Chrome executable to run. | 216 # This target should not require the Chrome executable to run. |
| 218 assert_no_deps = [ "//chrome" ] | 217 assert_no_deps = [ "//chrome" ] |
| 219 } | 218 } |
| OLD | NEW |