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 assert(is_mac || is_ios) | 5 assert(is_mac || is_ios) |
6 | 6 |
7 source_set("mac") { | 7 source_set("mac") { |
8 # Note: This source_set is depended on only by //media. In the component | 8 # Note: This source_set is depended on only by //media. In the component |
9 # build, if other component targets also depend on it, multiple copies of | 9 # build, if other component targets also depend on it, multiple copies of |
10 # the ObjC classes declared in the files below will cause warnings at | 10 # the ObjC classes declared in the files below will cause warnings at |
(...skipping 27 matching lines...) Expand all Loading... |
38 "//media:media_config", | 38 "//media:media_config", |
39 "//media:media_implementation", | 39 "//media:media_implementation", |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 source_set("unittests") { | 43 source_set("unittests") { |
44 testonly = true | 44 testonly = true |
45 sources = [ | 45 sources = [ |
46 "video_frame_mac_unittests.cc", | 46 "video_frame_mac_unittests.cc", |
47 ] | 47 ] |
| 48 libs = [ "CoreVideo.framework" ] |
48 configs += [ "//media:media_config" ] | 49 configs += [ "//media:media_config" ] |
49 deps = [ | 50 deps = [ |
50 "//testing/gtest", | 51 "//testing/gtest", |
51 ] | 52 ] |
52 } | 53 } |
OLD | NEW |