| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "CoreFoundation.framework", | 137 "CoreFoundation.framework", |
| 138 "CoreMIDI.framework", | 138 "CoreMIDI.framework", |
| 139 ] | 139 ] |
| 140 } | 140 } |
| 141 | 141 |
| 142 if (is_win) { | 142 if (is_win) { |
| 143 deps += [ "//device/usb" ] | 143 deps += [ "//device/usb" ] |
| 144 sources += [ | 144 sources += [ |
| 145 "dynamically_initialized_midi_manager_win.cc", | 145 "dynamically_initialized_midi_manager_win.cc", |
| 146 "dynamically_initialized_midi_manager_win.h", | 146 "dynamically_initialized_midi_manager_win.h", |
| 147 "midi_manager_win.cc", | |
| 148 "midi_manager_win.h", | |
| 149 "midi_manager_winrt.cc", | 147 "midi_manager_winrt.cc", |
| 150 "midi_manager_winrt.h", | 148 "midi_manager_winrt.h", |
| 151 ] | 149 ] |
| 152 | 150 |
| 153 # This library is included in base in static builds. | 151 # This library is included in base in static builds. |
| 154 if (is_component_build) { | 152 if (is_component_build) { |
| 155 libs += [ "cfgmgr32.lib" ] | 153 libs += [ "cfgmgr32.lib" ] |
| 156 } | 154 } |
| 157 } | 155 } |
| 158 | 156 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 libs = [ "CoreMIDI.framework" ] | 207 libs = [ "CoreMIDI.framework" ] |
| 210 } | 208 } |
| 211 | 209 |
| 212 if (use_alsa && use_udev) { | 210 if (use_alsa && use_udev) { |
| 213 sources += [ "midi_manager_alsa_unittest.cc" ] | 211 sources += [ "midi_manager_alsa_unittest.cc" ] |
| 214 } | 212 } |
| 215 | 213 |
| 216 # This target should not require the Chrome executable to run. | 214 # This target should not require the Chrome executable to run. |
| 217 assert_no_deps = [ "//chrome" ] | 215 assert_no_deps = [ "//chrome" ] |
| 218 } | 216 } |
| OLD | NEW |