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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 "video/picture.h", | 268 "video/picture.h", |
269 "video/video_decode_accelerator.cc", | 269 "video/video_decode_accelerator.cc", |
270 "video/video_decode_accelerator.h", | 270 "video/video_decode_accelerator.h", |
271 "video/video_encode_accelerator.cc", | 271 "video/video_encode_accelerator.cc", |
272 "video/video_encode_accelerator.h", | 272 "video/video_encode_accelerator.h", |
273 ] | 273 ] |
274 | 274 |
275 configs += [ | 275 configs += [ |
276 ":media_config", | 276 ":media_config", |
277 ":media_implementation", | 277 ":media_implementation", |
| 278 "//build/config:precompiled_headers", |
278 | 279 |
279 # TODO(wolenetz): Fix size_t to int trunctaion in win64. | 280 # TODO(wolenetz): Fix size_t to int trunctaion in win64. |
280 # See http://crbug.com/171009 | 281 # See http://crbug.com/171009 |
281 "//build/config/compiler:no_size_t_to_int_warning", | 282 "//build/config/compiler:no_size_t_to_int_warning", |
282 ] | 283 ] |
283 all_dependent_configs = [ ":media_dependent_config" ] | 284 all_dependent_configs = [ ":media_dependent_config" ] |
284 | 285 |
285 allow_circular_includes_from = [] | 286 allow_circular_includes_from = [] |
286 cflags = [] | 287 cflags = [] |
287 libs = [] | 288 libs = [] |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 "//media/base:test_support", | 775 "//media/base:test_support", |
775 "//media/test:pipeline_integration_tests", | 776 "//media/test:pipeline_integration_tests", |
776 "//testing/gmock", | 777 "//testing/gmock", |
777 "//testing/gtest", | 778 "//testing/gtest", |
778 "//third_party/ffmpeg", | 779 "//third_party/ffmpeg", |
779 "//ui/gfx/geometry", | 780 "//ui/gfx/geometry", |
780 "//ui/gfx:test_support", | 781 "//ui/gfx:test_support", |
781 ] | 782 ] |
782 } | 783 } |
783 } | 784 } |
OLD | NEW |