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

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

Issue 1339183002: Add localized default audio device names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor fixes. Created 5 years, 3 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "media.h", 111 "media.h",
112 "media_client.cc", 112 "media_client.cc",
113 "media_client.h", 113 "media_client.h",
114 "media_keys.cc", 114 "media_keys.cc",
115 "media_keys.h", 115 "media_keys.h",
116 "media_log.cc", 116 "media_log.cc",
117 "media_log.h", 117 "media_log.h",
118 "media_log_event.h", 118 "media_log_event.h",
119 "media_permission.cc", 119 "media_permission.cc",
120 "media_permission.h", 120 "media_permission.h",
121 "media_resources.cc",
122 "media_resources.h",
121 "media_switches.cc", 123 "media_switches.cc",
122 "media_switches.h", 124 "media_switches.h",
123 "mime_util.cc", 125 "mime_util.cc",
124 "mime_util.h", 126 "mime_util.h",
125 "moving_average.cc", 127 "moving_average.cc",
126 "moving_average.h", 128 "moving_average.h",
127 "multi_channel_resampler.cc", 129 "multi_channel_resampler.cc",
128 "multi_channel_resampler.h", 130 "multi_channel_resampler.h",
129 "null_video_sink.cc", 131 "null_video_sink.cc",
130 "null_video_sink.h", 132 "null_video_sink.h",
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 if (is_posix) { 529 if (is_posix) {
528 yasm_flags += [ "-DELF" ] 530 yasm_flags += [ "-DELF" ]
529 if (current_cpu == "x64") { 531 if (current_cpu == "x64") {
530 # TODO(ajwong): Why isn't this true in mac? 532 # TODO(ajwong): Why isn't this true in mac?
531 yasm_flags += [ "-DPIC" ] 533 yasm_flags += [ "-DPIC" ]
532 } 534 }
533 } 535 }
534 } 536 }
535 } 537 }
536 } 538 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698