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

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: 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 source_set("ffmpeg") {
8 assert(media_use_ffmpeg)
9 visibility = [ "//media/*" ]
10 allow_circular_includes_from = [ "//media/base" ]
DaleCurtis 2016/05/03 23:59:15 I guess this is the magic? gn help says: Danger
jrummell 2016/05/05 00:26:12 Done.
11 sources = [
12 "ffmpeg_common.cc",
13 "ffmpeg_common.h",
14 "ffmpeg_deleters.h",
15 ]
16 deps = [
17 "//base",
18 "//media:media_features",
19 "//media:shared_memory_support",
20 "//media/base",
21 "//third_party/ffmpeg",
22 ]
23 }
24
25 source_set("ffmpeg_unittests") {
26 assert(media_use_ffmpeg)
27 testonly = true
28 sources = [
29 "ffmpeg_common_unittest.cc",
30 ]
31 deps = [
32 ":ffmpeg",
33 "//base",
34 "//media",
35 "//media/base",
36 "//media/base:test_support",
37 "//testing/gtest",
38 "//third_party/ffmpeg",
39 ]
40 }
41
42 source_set("ffmpeg_regressiontests") {
43 assert(media_use_ffmpeg)
44 testonly = true
45 sources = [
46 "ffmpeg_regression_tests.cc",
47 ]
48 deps = [
49 ":ffmpeg",
50 "//base",
51 "//media/test:pipeline_integration_test_base",
52 "//third_party/ffmpeg",
53 ]
54 }
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