Chromium Code Reviews| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 130 if (is_mac) { | 130 if (is_mac) { |
| 131 libs += [ | 131 libs += [ |
| 132 "CoreAudio.framework", | 132 "CoreAudio.framework", |
| 133 "CoreFoundation.framework", | 133 "CoreFoundation.framework", |
| 134 "CoreMIDI.framework", | 134 "CoreMIDI.framework", |
| 135 ] | 135 ] |
| 136 } | 136 } |
| 137 | 137 |
| 138 if (is_win) { | 138 if (is_win) { |
| 139 deps += [ "//device/usb" ] | 139 deps += [ "//device/usb" ] |
| 140 libs += [ "cfgmgr32.lib" ] | |
|
Takashi Toyoshima
2016/09/09 05:17:42
Could you try without this line?
Shao-Chuan Lee
2016/09/09 05:44:47
Now including only if is_component_build.
| |
| 140 sources += [ | 141 sources += [ |
| 141 "midi_manager_win.cc", | 142 "midi_manager_win.cc", |
| 142 "midi_manager_win.h", | 143 "midi_manager_win.h", |
| 143 "midi_manager_winrt.cc", | 144 "midi_manager_winrt.cc", |
| 144 "midi_manager_winrt.h", | 145 "midi_manager_winrt.h", |
| 145 ] | 146 ] |
| 146 } | 147 } |
| 147 | 148 |
| 148 if (use_alsa && use_udev) { | 149 if (use_alsa && use_udev) { |
| 149 deps += [ | 150 deps += [ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 196 sources += [ "midi_manager_alsa_unittest.cc" ] | 197 sources += [ "midi_manager_alsa_unittest.cc" ] |
| 197 } | 198 } |
| 198 | 199 |
| 199 if (use_x11) { | 200 if (use_x11) { |
| 200 deps += [ "//tools/xdisplaycheck" ] | 201 deps += [ "//tools/xdisplaycheck" ] |
| 201 } | 202 } |
| 202 | 203 |
| 203 # This target should not require the Chrome executable to run. | 204 # This target should not require the Chrome executable to run. |
| 204 assert_no_deps = [ "//chrome" ] | 205 assert_no_deps = [ "//chrome" ] |
| 205 } | 206 } |
| OLD | NEW |