Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: media/midi/BUILD.gn

Issue 1961473003: [Mac/GN] Set up the component build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment and rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/gpu/BUILD.gn ('k') | net/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 deps += [ 126 deps += [
127 ":midi_jni_headers", 127 ":midi_jni_headers",
128 "//base:i18n", 128 "//base:i18n",
129 ] 129 ]
130 } 130 }
131 131
132 if (is_mac) { 132 if (is_mac) {
133 libs += [ 133 libs += [
134 "CoreAudio.framework", 134 "CoreAudio.framework",
135 "CoreFoundation.framework",
135 "CoreMIDI.framework", 136 "CoreMIDI.framework",
136 ] 137 ]
137 } 138 }
138 139
139 if (is_win) { 140 if (is_win) {
140 deps += [ "//device/usb" ] 141 deps += [ "//device/usb" ]
141 } 142 }
142 143
143 if (use_alsa && use_udev) { 144 if (use_alsa && use_udev) {
144 deps += [ 145 deps += [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 } 188 }
188 189
189 if (use_alsa && use_udev) { 190 if (use_alsa && use_udev) {
190 sources += [ "midi_manager_alsa_unittest.cc" ] 191 sources += [ "midi_manager_alsa_unittest.cc" ]
191 } 192 }
192 193
193 if (use_x11) { 194 if (use_x11) {
194 deps += [ "//tools/xdisplaycheck" ] 195 deps += [ "//tools/xdisplaycheck" ]
195 } 196 }
196 } 197 }
OLDNEW
« no previous file with comments | « media/gpu/BUILD.gn ('k') | net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698