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

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

Issue 666813002: GN: Fix Android component build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-clank
Patch Set: Created 6 years, 2 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/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
11 source_set("base") { 11 source_set("base") {
12 visibility = [ "//media/*" ]
12 sources = [ 13 sources = [
13 "audio_block_fifo.cc", 14 "audio_block_fifo.cc",
14 "audio_block_fifo.h", 15 "audio_block_fifo.h",
15 "audio_buffer.cc", 16 "audio_buffer.cc",
16 "audio_buffer.h", 17 "audio_buffer.h",
17 "audio_buffer_queue.cc", 18 "audio_buffer_queue.cc",
18 "audio_buffer_queue.h", 19 "audio_buffer_queue.h",
19 "audio_capturer_source.h", 20 "audio_capturer_source.h",
20 "audio_buffer_converter.cc", 21 "audio_buffer_converter.cc",
21 "audio_buffer_converter.h", 22 "audio_buffer_converter.h",
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 if (is_posix) { 445 if (is_posix) {
445 yasm_flags += [ "-DELF" ] 446 yasm_flags += [ "-DELF" ]
446 if (cpu_arch == "x64") { 447 if (cpu_arch == "x64") {
447 # TODO(ajwong): Why isn't this true in mac? 448 # TODO(ajwong): Why isn't this true in mac?
448 yasm_flags += [ "-DPIC" ] 449 yasm_flags += [ "-DPIC" ]
449 } 450 }
450 } 451 }
451 } 452 }
452 } 453 }
453 } 454 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698