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

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: Actually undo gyp change 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 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 if (is_posix) { 437 if (is_posix) {
437 yasm_flags += [ "-DELF" ] 438 yasm_flags += [ "-DELF" ]
438 if (cpu_arch == "x64") { 439 if (cpu_arch == "x64") {
439 # TODO(ajwong): Why isn't this true in mac? 440 # TODO(ajwong): Why isn't this true in mac?
440 yasm_flags += [ "-DPIC" ] 441 yasm_flags += [ "-DPIC" ]
441 } 442 }
442 } 443 }
443 } 444 }
444 } 445 }
445 } 446 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698