| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 202 |
| 203 if (is_mac) { | 203 if (is_mac) { |
| 204 sources += [ "midi_manager_mac_unittest.cc" ] | 204 sources += [ "midi_manager_mac_unittest.cc" ] |
| 205 libs = [ "CoreMIDI.framework" ] | 205 libs = [ "CoreMIDI.framework" ] |
| 206 } | 206 } |
| 207 | 207 |
| 208 if (use_alsa && use_udev) { | 208 if (use_alsa && use_udev) { |
| 209 sources += [ "midi_manager_alsa_unittest.cc" ] | 209 sources += [ "midi_manager_alsa_unittest.cc" ] |
| 210 } | 210 } |
| 211 | 211 |
| 212 if (use_x11) { | |
| 213 deps += [ "//tools/xdisplaycheck" ] | |
| 214 } | |
| 215 | |
| 216 # This target should not require the Chrome executable to run. | 212 # This target should not require the Chrome executable to run. |
| 217 assert_no_deps = [ "//chrome" ] | 213 assert_no_deps = [ "//chrome" ] |
| 218 } | 214 } |
| OLD | NEW |