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

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

Issue 2066943002: Fix media_perftests to run on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Typos. Created 4 years, 6 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/BUILD.gn ('k') | media/base/run_all_perftests.cc » ('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 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 "//media", 512 "//media",
513 "//testing/gmock", 513 "//testing/gmock",
514 "//testing/gtest", 514 "//testing/gtest",
515 "//testing/perf", 515 "//testing/perf",
516 "//third_party/libyuv", 516 "//third_party/libyuv",
517 ] 517 ]
518 518
519 if (media_use_ffmpeg) { 519 if (media_use_ffmpeg) {
520 sources += [ "demuxer_perftest.cc" ] 520 sources += [ "demuxer_perftest.cc" ]
521 } 521 }
522
523 if (is_android) {
524 deps += [ "//ui/gl" ]
525 }
526 } 522 }
527 523
528 if (current_cpu == "x86" || current_cpu == "x64") { 524 if (current_cpu == "x86" || current_cpu == "x64") {
529 import("//third_party/yasm/yasm_assemble.gni") 525 import("//third_party/yasm/yasm_assemble.gni")
530 yasm_assemble("media_yasm") { 526 yasm_assemble("media_yasm") {
531 sources = [ 527 sources = [
532 "simd/convert_rgb_to_yuv_ssse3.asm", 528 "simd/convert_rgb_to_yuv_ssse3.asm",
533 "simd/convert_yuv_to_rgb_sse.asm", 529 "simd/convert_yuv_to_rgb_sse.asm",
534 "simd/convert_yuva_to_argb_mmx.asm", 530 "simd/convert_yuva_to_argb_mmx.asm",
535 "simd/empty_register_state_mmx.asm", 531 "simd/empty_register_state_mmx.asm",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 598
603 fuzzer_test("media_container_names_fuzzer") { 599 fuzzer_test("media_container_names_fuzzer") {
604 sources = [ 600 sources = [
605 "container_names_fuzzertest.cc", 601 "container_names_fuzzertest.cc",
606 ] 602 ]
607 deps = [ 603 deps = [
608 "//base", 604 "//base",
609 "//media", 605 "//media",
610 ] 606 ]
611 } 607 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/base/run_all_perftests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698