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

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

Issue 1944183002: Add BUILD.gn for //media/ffmpeg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add config + rebase Created 4 years, 7 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/base/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//media/media_options.gni")
6
7 assert(media_use_ffmpeg)
8
9 source_set("ffmpeg") {
10 visibility = [ "//media/*" ]
11 allow_circular_includes_from = [ "//media/base" ]
12 configs += [ "//media/base:base_config" ]
13 sources = [
14 "ffmpeg_common.cc",
15 "ffmpeg_common.h",
16 "ffmpeg_deleters.h",
17 ]
18 deps = [
19 "//base",
20 "//media:media_features",
21 "//media:shared_memory_support",
22 "//media/base",
23 "//third_party/ffmpeg",
24 ]
25 }
26
27 source_set("ffmpeg_unittests") {
28 testonly = true
29 sources = [
30 "ffmpeg_common_unittest.cc",
31 ]
32 deps = [
33 "//base",
34 "//media",
35 "//media/base:test_support",
36 "//testing/gtest",
37 "//third_party/ffmpeg",
38 ]
39 }
40
41 source_set("ffmpeg_regression_tests") {
42 testonly = true
43 sources = [
44 "ffmpeg_regression_tests.cc",
45 ]
46 deps = [
47 "//base",
48 "//media",
49 "//media/test:pipeline_integration_test_base",
50 "//testing/gmock",
51 "//third_party/ffmpeg",
52 ]
53 }
OLDNEW
« no previous file with comments | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698