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("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "screen_capturer_helper.cc", | 65 "screen_capturer_helper.cc", |
66 "screen_capturer_helper.h", | 66 "screen_capturer_helper.h", |
67 "screen_capturer_mac.mm", | 67 "screen_capturer_mac.mm", |
68 "screen_capturer_win.cc", | 68 "screen_capturer_win.cc", |
69 "shared_desktop_frame.cc", | 69 "shared_desktop_frame.cc", |
70 "shared_desktop_frame.h", | 70 "shared_desktop_frame.h", |
71 "shared_memory.cc", | 71 "shared_memory.cc", |
72 "shared_memory.h", | 72 "shared_memory.h", |
73 "win/cursor.cc", | 73 "win/cursor.cc", |
74 "win/cursor.h", | 74 "win/cursor.h", |
| 75 "win/d3d_device.cc", |
| 76 "win/d3d_device.h", |
75 "win/desktop.cc", | 77 "win/desktop.cc", |
76 "win/desktop.h", | 78 "win/desktop.h", |
| 79 "win/dxgi_adapter_duplicator.cc", |
| 80 "win/dxgi_adapter_duplicator.h", |
| 81 "win/dxgi_duplicator_controller.cc", |
| 82 "win/dxgi_duplicator_controller.h", |
| 83 "win/dxgi_output_duplicator.cc", |
| 84 "win/dxgi_output_duplicator.h", |
| 85 "win/dxgi_texture.cc", |
| 86 "win/dxgi_texture.h", |
| 87 "win/dxgi_texture_mapping.cc", |
| 88 "win/dxgi_texture_mapping.h", |
| 89 "win/dxgi_texture_staging.cc", |
| 90 "win/dxgi_texture_staging.h", |
77 "win/scoped_gdi_object.h", | 91 "win/scoped_gdi_object.h", |
78 "win/scoped_thread_desktop.cc", | 92 "win/scoped_thread_desktop.cc", |
79 "win/scoped_thread_desktop.h", | 93 "win/scoped_thread_desktop.h", |
80 "win/screen_capture_utils.cc", | 94 "win/screen_capture_utils.cc", |
81 "win/screen_capture_utils.h", | 95 "win/screen_capture_utils.h", |
82 "win/screen_capturer_win_directx.cc", | 96 "win/screen_capturer_win_directx.cc", |
83 "win/screen_capturer_win_directx.h", | 97 "win/screen_capturer_win_directx.h", |
84 "win/screen_capturer_win_gdi.cc", | 98 "win/screen_capturer_win_gdi.cc", |
85 "win/screen_capturer_win_gdi.h", | 99 "win/screen_capturer_win_gdi.h", |
86 "win/screen_capturer_win_magnifier.cc", | 100 "win/screen_capturer_win_magnifier.cc", |
(...skipping 30 matching lines...) Expand all Loading... |
117 | 131 |
118 if (is_mac) { | 132 if (is_mac) { |
119 libs = [ | 133 libs = [ |
120 "AppKit.framework", | 134 "AppKit.framework", |
121 "IOKit.framework", | 135 "IOKit.framework", |
122 "OpenGL.framework", | 136 "OpenGL.framework", |
123 ] | 137 ] |
124 } | 138 } |
125 | 139 |
126 if (is_win) { | 140 if (is_win) { |
127 libs = [ "d3d11.lib" ] | 141 libs = [ |
| 142 "d3d11.lib", |
| 143 "dxgi.lib", |
| 144 ] |
128 } | 145 } |
129 | 146 |
130 configs += [ "../..:common_config" ] | 147 configs += [ "../..:common_config" ] |
131 public_configs = [ "../..:common_inherited_config" ] | 148 public_configs = [ "../..:common_inherited_config" ] |
132 | 149 |
133 if (is_clang && !is_nacl) { | 150 if (is_clang && !is_nacl) { |
134 # Suppress warnings from Chrome's Clang plugins. | 151 # Suppress warnings from Chrome's Clang plugins. |
135 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 152 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
136 configs -= [ "//build/config/clang:find_bad_constructs" ] | 153 configs -= [ "//build/config/clang:find_bad_constructs" ] |
137 } | 154 } |
(...skipping 20 matching lines...) Expand all Loading... |
158 ] | 175 ] |
159 | 176 |
160 configs += [ "../..:common_config" ] | 177 configs += [ "../..:common_config" ] |
161 public_configs = [ "../..:common_inherited_config" ] | 178 public_configs = [ "../..:common_inherited_config" ] |
162 | 179 |
163 if (is_posix && !is_mac) { | 180 if (is_posix && !is_mac) { |
164 cflags = [ "-msse2" ] | 181 cflags = [ "-msse2" ] |
165 } | 182 } |
166 } | 183 } |
167 } | 184 } |
OLD | NEW |