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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 "mac/full_screen_chrome_window_detector.h", | 53 "mac/full_screen_chrome_window_detector.h", |
54 "mac/scoped_pixel_buffer_object.cc", | 54 "mac/scoped_pixel_buffer_object.cc", |
55 "mac/scoped_pixel_buffer_object.h", | 55 "mac/scoped_pixel_buffer_object.h", |
56 "mac/window_list_utils.cc", | 56 "mac/window_list_utils.cc", |
57 "mac/window_list_utils.h", | 57 "mac/window_list_utils.h", |
58 "mouse_cursor.cc", | 58 "mouse_cursor.cc", |
59 "mouse_cursor.h", | 59 "mouse_cursor.h", |
60 "mouse_cursor_monitor.h", | 60 "mouse_cursor_monitor.h", |
61 "mouse_cursor_monitor_mac.mm", | 61 "mouse_cursor_monitor_mac.mm", |
62 "mouse_cursor_monitor_win.cc", | 62 "mouse_cursor_monitor_win.cc", |
| 63 "screen_capture_content_queue.h", |
63 "screen_capture_frame_queue.cc", | 64 "screen_capture_frame_queue.cc", |
64 "screen_capture_frame_queue.h", | 65 "screen_capture_frame_queue.h", |
65 "screen_capturer.cc", | 66 "screen_capturer.cc", |
66 "screen_capturer.h", | 67 "screen_capturer.h", |
67 "screen_capturer_helper.cc", | 68 "screen_capturer_helper.cc", |
68 "screen_capturer_helper.h", | 69 "screen_capturer_helper.h", |
69 "screen_capturer_mac.mm", | 70 "screen_capturer_mac.mm", |
70 "screen_capturer_win.cc", | 71 "screen_capturer_win.cc", |
71 "shared_desktop_frame.cc", | 72 "shared_desktop_frame.cc", |
72 "shared_desktop_frame.h", | 73 "shared_desktop_frame.h", |
73 "shared_memory.cc", | 74 "shared_memory.cc", |
74 "shared_memory.h", | 75 "shared_memory.h", |
75 "win/cursor.cc", | 76 "win/cursor.cc", |
76 "win/cursor.h", | 77 "win/cursor.h", |
77 "win/desktop.cc", | 78 "win/desktop.cc", |
78 "win/desktop.h", | 79 "win/desktop.h", |
79 "win/scoped_gdi_object.h", | 80 "win/scoped_gdi_object.h", |
80 "win/scoped_thread_desktop.cc", | 81 "win/scoped_thread_desktop.cc", |
81 "win/scoped_thread_desktop.h", | 82 "win/scoped_thread_desktop.h", |
82 "win/screen_capture_utils.cc", | 83 "win/screen_capture_utils.cc", |
83 "win/screen_capture_utils.h", | 84 "win/screen_capture_utils.h", |
| 85 "win/screen_capturer_win_directx.cc", |
| 86 "win/screen_capturer_win_directx.h", |
84 "win/screen_capturer_win_gdi.cc", | 87 "win/screen_capturer_win_gdi.cc", |
85 "win/screen_capturer_win_gdi.h", | 88 "win/screen_capturer_win_gdi.h", |
86 "win/screen_capturer_win_magnifier.cc", | 89 "win/screen_capturer_win_magnifier.cc", |
87 "win/screen_capturer_win_magnifier.h", | 90 "win/screen_capturer_win_magnifier.h", |
88 "win/window_capture_utils.cc", | 91 "win/window_capture_utils.cc", |
89 "win/window_capture_utils.h", | 92 "win/window_capture_utils.h", |
90 "window_capturer.cc", | 93 "window_capturer.cc", |
91 "window_capturer.h", | 94 "window_capturer.h", |
92 "window_capturer_mac.mm", | 95 "window_capturer_mac.mm", |
93 "window_capturer_win.cc", | 96 "window_capturer_win.cc", |
(...skipping 23 matching lines...) Expand all Loading... |
117 } | 120 } |
118 | 121 |
119 if (is_mac) { | 122 if (is_mac) { |
120 libs = [ | 123 libs = [ |
121 "AppKit.framework", | 124 "AppKit.framework", |
122 "IOKit.framework", | 125 "IOKit.framework", |
123 "OpenGL.framework", | 126 "OpenGL.framework", |
124 ] | 127 ] |
125 } | 128 } |
126 | 129 |
| 130 if (is_win) { |
| 131 libs = [ "d3d11.lib" ] |
| 132 } |
| 133 |
127 configs += [ "../..:common_config" ] | 134 configs += [ "../..:common_config" ] |
128 public_configs = [ "../..:common_inherited_config" ] | 135 public_configs = [ "../..:common_inherited_config" ] |
129 | 136 |
130 if (is_clang && !is_nacl) { | 137 if (is_clang && !is_nacl) { |
131 # Suppress warnings from Chrome's Clang plugins. | 138 # Suppress warnings from Chrome's Clang plugins. |
132 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 139 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
133 configs -= [ "//build/config/clang:find_bad_constructs" ] | 140 configs -= [ "//build/config/clang:find_bad_constructs" ] |
134 } | 141 } |
135 | 142 |
136 deps = [ | 143 deps = [ |
(...skipping 18 matching lines...) Expand all Loading... |
155 ] | 162 ] |
156 | 163 |
157 configs += [ "../..:common_config" ] | 164 configs += [ "../..:common_config" ] |
158 public_configs = [ "../..:common_inherited_config" ] | 165 public_configs = [ "../..:common_inherited_config" ] |
159 | 166 |
160 if (is_posix && !is_mac) { | 167 if (is_posix && !is_mac) { |
161 cflags = [ "-msse2" ] | 168 cflags = [ "-msse2" ] |
162 } | 169 } |
163 } | 170 } |
164 } | 171 } |
OLD | NEW |