| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("../../webrtc.gni") | 10 import("../../webrtc.gni") |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "screen_capturer_mac.mm", | 196 "screen_capturer_mac.mm", |
| 197 "screen_capturer_win.cc", | 197 "screen_capturer_win.cc", |
| 198 "win/cursor.cc", | 198 "win/cursor.cc", |
| 199 "win/cursor.h", | 199 "win/cursor.h", |
| 200 "win/d3d_device.cc", | 200 "win/d3d_device.cc", |
| 201 "win/d3d_device.h", | 201 "win/d3d_device.h", |
| 202 "win/desktop.cc", | 202 "win/desktop.cc", |
| 203 "win/desktop.h", | 203 "win/desktop.h", |
| 204 "win/dxgi_adapter_duplicator.cc", | 204 "win/dxgi_adapter_duplicator.cc", |
| 205 "win/dxgi_adapter_duplicator.h", | 205 "win/dxgi_adapter_duplicator.h", |
| 206 "win/dxgi_context.cc", |
| 207 "win/dxgi_context.h", |
| 206 "win/dxgi_duplicator_controller.cc", | 208 "win/dxgi_duplicator_controller.cc", |
| 207 "win/dxgi_duplicator_controller.h", | 209 "win/dxgi_duplicator_controller.h", |
| 210 "win/dxgi_frame.cc", |
| 211 "win/dxgi_frame.h", |
| 208 "win/dxgi_output_duplicator.cc", | 212 "win/dxgi_output_duplicator.cc", |
| 209 "win/dxgi_output_duplicator.h", | 213 "win/dxgi_output_duplicator.h", |
| 210 "win/dxgi_texture.cc", | 214 "win/dxgi_texture.cc", |
| 211 "win/dxgi_texture.h", | 215 "win/dxgi_texture.h", |
| 212 "win/dxgi_texture_mapping.cc", | 216 "win/dxgi_texture_mapping.cc", |
| 213 "win/dxgi_texture_mapping.h", | 217 "win/dxgi_texture_mapping.h", |
| 214 "win/dxgi_texture_staging.cc", | 218 "win/dxgi_texture_staging.cc", |
| 215 "win/dxgi_texture_staging.h", | 219 "win/dxgi_texture_staging.h", |
| 216 "win/scoped_gdi_object.h", | 220 "win/scoped_gdi_object.h", |
| 217 "win/scoped_thread_desktop.cc", | 221 "win/scoped_thread_desktop.cc", |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 sources = [ | 293 sources = [ |
| 290 "differ_vector_sse2.cc", | 294 "differ_vector_sse2.cc", |
| 291 "differ_vector_sse2.h", | 295 "differ_vector_sse2.h", |
| 292 ] | 296 ] |
| 293 | 297 |
| 294 if (is_posix) { | 298 if (is_posix) { |
| 295 cflags = [ "-msse2" ] | 299 cflags = [ "-msse2" ] |
| 296 } | 300 } |
| 297 } | 301 } |
| 298 } | 302 } |
| OLD | NEW |