| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 source_set("capture") { | 9 source_set("capture") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "video/win/video_capture_device_mf_win.h", | 76 "video/win/video_capture_device_mf_win.h", |
| 77 "video/win/video_capture_device_win.cc", | 77 "video/win/video_capture_device_win.cc", |
| 78 "video/win/video_capture_device_win.h", | 78 "video/win/video_capture_device_win.h", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 public_deps = [] | 81 public_deps = [] |
| 82 deps = [ | 82 deps = [ |
| 83 "//base", | 83 "//base", |
| 84 "//media/base", | 84 "//media/base", |
| 85 "//skia", | 85 "//skia", |
| 86 "//ui/display", |
| 86 ] | 87 ] |
| 87 | 88 |
| 88 configs += [ | 89 configs += [ |
| 89 "//media:media_implementation", | 90 "//media:media_implementation", |
| 90 | 91 |
| 91 # TODO(mcasas): Fix size_t to int truncation warning-treated-as-errors. | 92 # TODO(mcasas): Fix size_t to int truncation warning-treated-as-errors. |
| 92 "//build/config/compiler:no_size_t_to_int_warning", | 93 "//build/config/compiler:no_size_t_to_int_warning", |
| 93 ] | 94 ] |
| 94 | 95 |
| 95 if (is_android) { | 96 if (is_android) { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 147 |
| 147 deps = [ | 148 deps = [ |
| 148 "//media/base:unittests", | 149 "//media/base:unittests", |
| 149 "//testing/gmock", | 150 "//testing/gmock", |
| 150 "//testing/gtest", | 151 "//testing/gtest", |
| 151 ] | 152 ] |
| 152 | 153 |
| 153 # TODO(mcasas): Fix size_t to int truncation warning-treated-as-errors. | 154 # TODO(mcasas): Fix size_t to int truncation warning-treated-as-errors. |
| 154 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 155 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 155 } | 156 } |
| OLD | NEW |