| OLD | NEW |
| 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/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 "filters/source_buffer_platform_lowmem.cc", | 543 "filters/source_buffer_platform_lowmem.cc", |
| 544 ] | 544 ] |
| 545 } else { | 545 } else { |
| 546 sources += [ | 546 sources += [ |
| 547 "filters/source_buffer_platform.cc", | 547 "filters/source_buffer_platform.cc", |
| 548 "filters/source_buffer_platform.h", | 548 "filters/source_buffer_platform.h", |
| 549 ] | 549 ] |
| 550 } | 550 } |
| 551 | 551 |
| 552 public_deps = [ | 552 public_deps = [ |
| 553 "//media/audio", |
| 553 "//media/base", | 554 "//media/base", |
| 554 "//media/audio", | |
| 555 "//third_party/opus", | 555 "//third_party/opus", |
| 556 ] | 556 ] |
| 557 | 557 |
| 558 deps += [ | 558 deps += [ |
| 559 ":shared_memory_support", | 559 ":shared_memory_support", |
| 560 "//base", | 560 "//base", |
| 561 "//base:i18n", | 561 "//base:i18n", |
| 562 "//base/third_party/dynamic_annotations", | 562 "//base/third_party/dynamic_annotations", |
| 563 "//crypto", | 563 "//crypto", |
| 564 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp
via export_dependent_settings | 564 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp
via export_dependent_settings |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 | 666 |
| 667 # TODO(wolenetz): Fix size_t to int trunctaion in win64. | 667 # TODO(wolenetz): Fix size_t to int trunctaion in win64. |
| 668 # See http://crbug.com/171009 | 668 # See http://crbug.com/171009 |
| 669 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 669 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 670 | 670 |
| 671 deps = [ | 671 deps = [ |
| 672 ":media", | 672 ":media", |
| 673 ":test_support", | 673 ":test_support", |
| 674 "//base/allocator", | 674 "//base/allocator", |
| 675 "//base/test:test_support", | 675 "//base/test:test_support", |
| 676 "//gpu:test_support", |
| 676 "//gpu/command_buffer/common", | 677 "//gpu/command_buffer/common", |
| 677 "//gpu:test_support", | 678 "//media/audio:test_support", |
| 678 "//media/audio:unittests", | 679 "//media/audio:unittests", |
| 679 "//media/audio:test_support", | 680 "//media/base:test_support", |
| 680 "//media/base:unittests", | 681 "//media/base:unittests", |
| 681 "//media/base:test_support", | |
| 682 "//media/test:pipeline_integration_tests", | 682 "//media/test:pipeline_integration_tests", |
| 683 "//skia", # Direct dependency required to inherit config. | 683 "//skia", # Direct dependency required to inherit config. |
| 684 "//testing/gmock", | 684 "//testing/gmock", |
| 685 "//testing/gtest", | 685 "//testing/gtest", |
| 686 "//third_party/widevine/cdm:version_h", | 686 "//third_party/widevine/cdm:version_h", |
| 687 "//ui/gfx:test_support", | 687 "//ui/gfx:test_support", |
| 688 "//url", | 688 "//url", |
| 689 ] | 689 ] |
| 690 | 690 |
| 691 if (is_android) { | 691 if (is_android) { |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 deps = [ | 884 deps = [ |
| 885 "//base/test:test_support", | 885 "//base/test:test_support", |
| 886 "//media", | 886 "//media", |
| 887 "//media:test_support", | 887 "//media:test_support", |
| 888 "//media/audio:test_support", | 888 "//media/audio:test_support", |
| 889 "//media/base:test_support", | 889 "//media/base:test_support", |
| 890 "//media/test:pipeline_integration_tests", | 890 "//media/test:pipeline_integration_tests", |
| 891 "//testing/gmock", | 891 "//testing/gmock", |
| 892 "//testing/gtest", | 892 "//testing/gtest", |
| 893 "//third_party/ffmpeg", | 893 "//third_party/ffmpeg", |
| 894 "//ui/gfx:test_support", |
| 894 "//ui/gfx/geometry", | 895 "//ui/gfx/geometry", |
| 895 "//ui/gfx:test_support", | |
| 896 ] | 896 ] |
| 897 } | 897 } |
| 898 } | 898 } |
| OLD | NEW |