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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //media/gpu/ipc/common | 8 # GN version: //media/gpu/ipc/common |
9 'target_name': 'media_gpu_ipc_common', | 9 'target_name': 'media_gpu_ipc_common', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 'conditions': [ | 92 'conditions': [ |
93 ['OS == "win" and target_arch == "x64"', { | 93 ['OS == "win" and target_arch == "x64"', { |
94 'msvs_settings': { | 94 'msvs_settings': { |
95 'VCCLCompilerTool': { | 95 'VCCLCompilerTool': { |
96 'AdditionalOptions': [ | 96 'AdditionalOptions': [ |
97 '/wd4267', # Conversion from 'size_t' to 'type', possible loss o
f data | 97 '/wd4267', # Conversion from 'size_t' to 'type', possible loss o
f data |
98 ], | 98 ], |
99 }, | 99 }, |
100 }, | 100 }, |
101 }], | 101 }], |
| 102 ['OS=="mac"', { |
| 103 'dependencies': [ |
| 104 '../../../third_party/webrtc/common_video/common_video.gyp:common_vi
deo', |
| 105 ], |
| 106 }], |
102 ], | 107 ], |
103 } | 108 } |
104 ] | 109 ] |
105 } | 110 } |
OLD | NEW |