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

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: shared config 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
« media/BUILD.gn ('K') | « 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)
DaleCurtis 2016/05/05 01:12:08 Just put this at the top instead in each set?
jrummell 2016/05/05 19:01:09 Not sure how GN decides what BUILD.gn files to pro
9 visibility = [ "//media/*" ]
10 allow_circular_includes_from = [ "//media/base" ]
11 configs += [ "//media/base:base_config" ]
12 sources = [
13 "ffmpeg_common.cc",
14 "ffmpeg_common.h",
15 "ffmpeg_deleters.h",
16 ]
17 deps = [
18 "//base",
19 "//media:media_features",
20 "//media:shared_memory_support",
21 "//media/base",
22 "//third_party/ffmpeg",
23 ]
24 }
25
26 source_set("ffmpeg_unittests") {
27 assert(media_use_ffmpeg)
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_regressiontests") {
42 assert(media_use_ffmpeg)
43 testonly = true
44 sources = [
45 "ffmpeg_regression_tests.cc",
46 ]
47 deps = [
48 "//base",
49 "//media",
50 "//media/test:pipeline_integration_test_base",
51 "//testing/gmock",
52 "//third_party/ffmpeg",
53 ]
54 }
OLDNEW
« media/BUILD.gn ('K') | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698