| 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 component("capture") { | 9 component("capture") { |
| 10 defines = [ "CAPTURE_IMPLEMENTATION" ] | 10 defines = [ "CAPTURE_IMPLEMENTATION" ] |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//base/test:run_all_unittests", | 164 "//base/test:run_all_unittests", |
| 165 "//base/test:test_support", | 165 "//base/test:test_support", |
| 166 "//media/base:test_support", | 166 "//media/base:test_support", |
| 167 "//media/mojo/interfaces:image_capture", | 167 "//media/mojo/interfaces:image_capture", |
| 168 "//testing/gmock", | 168 "//testing/gmock", |
| 169 "//testing/gtest", | 169 "//testing/gtest", |
| 170 "//ui/gfx:test_support", | 170 "//ui/gfx:test_support", |
| 171 ] | 171 ] |
| 172 | 172 |
| 173 if (is_android) { | 173 if (is_android) { |
| 174 deps += [ "//media/capture/video/android:capture_java" ] | 174 deps += [ |
| 175 "//media/capture/video/android", |
| 176 "//media/capture/video/android:capture_java", |
| 177 ] |
| 175 } | 178 } |
| 176 | 179 |
| 177 if (is_win) { | 180 if (is_win) { |
| 178 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. | 181 # TODO(jschuh): https://crbug.com/167187 fix size_t to int truncations. |
| 179 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 182 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 180 } | 183 } |
| 181 } | 184 } |
| OLD | NEW |