| OLD | NEW |
| 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "screen_capturer_helper.h", | 62 "screen_capturer_helper.h", |
| 63 "screen_capturer_mac.mm", | 63 "screen_capturer_mac.mm", |
| 64 "screen_capturer_win.cc", | 64 "screen_capturer_win.cc", |
| 65 "screen_capturer_x11.cc", | 65 "screen_capturer_x11.cc", |
| 66 "shared_desktop_frame.cc", | 66 "shared_desktop_frame.cc", |
| 67 "shared_desktop_frame.h", | 67 "shared_desktop_frame.h", |
| 68 "shared_memory.cc", | 68 "shared_memory.cc", |
| 69 "shared_memory.h", | 69 "shared_memory.h", |
| 70 "win/cursor.cc", | 70 "win/cursor.cc", |
| 71 "win/cursor.h", | 71 "win/cursor.h", |
| 72 "win/d3d_device.cc", |
| 73 "win/d3d_device.h", |
| 72 "win/desktop.cc", | 74 "win/desktop.cc", |
| 73 "win/desktop.h", | 75 "win/desktop.h", |
| 76 "win/dxgi_adapter_duplicator.cc", |
| 77 "win/dxgi_adapter_duplicator.h", |
| 78 "win/dxgi_duplicator.cc", |
| 79 "win/dxgi_duplicator.h", |
| 80 "win/dxgi_duplicator_container.cc", |
| 81 "win/dxgi_duplicator_container.h", |
| 82 "win/dxgi_texture.cc", |
| 83 "win/dxgi_texture.h", |
| 84 "win/dxgi_texture_mapping.cc", |
| 85 "win/dxgi_texture_mapping.h", |
| 86 "win/dxgi_texture_staging.cc", |
| 87 "win/dxgi_texture_staging.h", |
| 74 "win/scoped_gdi_object.h", | 88 "win/scoped_gdi_object.h", |
| 75 "win/scoped_thread_desktop.cc", | 89 "win/scoped_thread_desktop.cc", |
| 76 "win/scoped_thread_desktop.h", | 90 "win/scoped_thread_desktop.h", |
| 77 "win/screen_capturer_win_directx.cc", | 91 "win/screen_capturer_win_directx.cc", |
| 78 "win/screen_capturer_win_directx.h", | 92 "win/screen_capturer_win_directx.h", |
| 79 "win/screen_capturer_win_gdi.cc", | 93 "win/screen_capturer_win_gdi.cc", |
| 80 "win/screen_capturer_win_gdi.h", | 94 "win/screen_capturer_win_gdi.h", |
| 81 "win/screen_capturer_win_magnifier.cc", | 95 "win/screen_capturer_win_magnifier.cc", |
| 82 "win/screen_capturer_win_magnifier.h", | 96 "win/screen_capturer_win_magnifier.h", |
| 83 "win/screen_capture_utils.cc", | 97 "win/screen_capture_utils.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 }, | 144 }, |
| 131 }], | 145 }], |
| 132 ], | 146 ], |
| 133 'all_dependent_settings': { | 147 'all_dependent_settings': { |
| 134 'conditions': [ | 148 'conditions': [ |
| 135 ['OS=="win"', { | 149 ['OS=="win"', { |
| 136 'msvs_settings': { | 150 'msvs_settings': { |
| 137 'VCLinkerTool': { | 151 'VCLinkerTool': { |
| 138 'AdditionalDependencies': [ | 152 'AdditionalDependencies': [ |
| 139 'd3d11.lib', | 153 'd3d11.lib', |
| 154 'dxgi.lib', |
| 140 ], | 155 ], |
| 141 }, | 156 }, |
| 142 }, | 157 }, |
| 143 }], | 158 }], |
| 144 ], | 159 ], |
| 145 }, | 160 }, |
| 146 }, | 161 }, |
| 147 ], # targets | 162 ], # targets |
| 148 'conditions': [ | 163 'conditions': [ |
| 149 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { | 164 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 163 'xcode_settings': { | 178 'xcode_settings': { |
| 164 'OTHER_CFLAGS': [ '-msse2', ], | 179 'OTHER_CFLAGS': [ '-msse2', ], |
| 165 }, | 180 }, |
| 166 }], | 181 }], |
| 167 ], | 182 ], |
| 168 }, | 183 }, |
| 169 ], # targets | 184 ], # targets |
| 170 }], | 185 }], |
| 171 ], | 186 ], |
| 172 } | 187 } |
| OLD | NEW |