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 20 matching lines...) Expand all Loading... |
31 "cropped_desktop_frame.cc", | 31 "cropped_desktop_frame.cc", |
32 "cropped_desktop_frame.h", | 32 "cropped_desktop_frame.h", |
33 "cropping_window_capturer.cc", | 33 "cropping_window_capturer.cc", |
34 "cropping_window_capturer.h", | 34 "cropping_window_capturer.h", |
35 "cropping_window_capturer_win.cc", | 35 "cropping_window_capturer_win.cc", |
36 "desktop_and_cursor_composer.cc", | 36 "desktop_and_cursor_composer.cc", |
37 "desktop_and_cursor_composer.h", | 37 "desktop_and_cursor_composer.h", |
38 "desktop_capture_options.cc", | 38 "desktop_capture_options.cc", |
39 "desktop_capture_options.h", | 39 "desktop_capture_options.h", |
40 "desktop_capturer.h", | 40 "desktop_capturer.h", |
41 "desktop_capturer.h", | |
42 "desktop_frame_win.cc", | 41 "desktop_frame_win.cc", |
43 "desktop_frame_win.h", | 42 "desktop_frame_win.h", |
44 "differ.cc", | |
45 "differ.h", | |
46 "differ_block.cc", | |
47 "differ_block.h", | |
48 "mac/desktop_configuration.h", | 43 "mac/desktop_configuration.h", |
49 "mac/desktop_configuration.mm", | 44 "mac/desktop_configuration.mm", |
50 "mac/desktop_configuration_monitor.cc", | 45 "mac/desktop_configuration_monitor.cc", |
51 "mac/desktop_configuration_monitor.h", | 46 "mac/desktop_configuration_monitor.h", |
52 "mac/full_screen_chrome_window_detector.cc", | 47 "mac/full_screen_chrome_window_detector.cc", |
53 "mac/full_screen_chrome_window_detector.h", | 48 "mac/full_screen_chrome_window_detector.h", |
54 "mac/scoped_pixel_buffer_object.cc", | 49 "mac/scoped_pixel_buffer_object.cc", |
55 "mac/scoped_pixel_buffer_object.h", | 50 "mac/scoped_pixel_buffer_object.h", |
56 "mac/window_list_utils.cc", | 51 "mac/window_list_utils.cc", |
57 "mac/window_list_utils.h", | 52 "mac/window_list_utils.h", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 } | 117 } |
123 | 118 |
124 if (!is_win && !is_mac && !use_x11) { | 119 if (!is_win && !is_mac && !use_x11) { |
125 sources += [ | 120 sources += [ |
126 "mouse_cursor_monitor_null.cc", | 121 "mouse_cursor_monitor_null.cc", |
127 "screen_capturer_null.cc", | 122 "screen_capturer_null.cc", |
128 "window_capturer_null.cc", | 123 "window_capturer_null.cc", |
129 ] | 124 ] |
130 } | 125 } |
131 | 126 |
| 127 if (!is_ios) { |
| 128 sources += [ |
| 129 "differ.cc", |
| 130 "differ.h", |
| 131 "differ_block.cc", |
| 132 "differ_block.h", |
| 133 ] |
| 134 } |
| 135 |
132 if (is_mac) { | 136 if (is_mac) { |
133 libs = [ | 137 libs = [ |
134 "AppKit.framework", | 138 "AppKit.framework", |
135 "IOKit.framework", | 139 "IOKit.framework", |
136 "OpenGL.framework", | 140 "OpenGL.framework", |
137 ] | 141 ] |
138 } | 142 } |
139 | 143 |
140 if (is_win) { | 144 if (is_win) { |
141 libs = [ | 145 libs = [ |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 ] | 179 ] |
176 | 180 |
177 configs += [ "../..:common_config" ] | 181 configs += [ "../..:common_config" ] |
178 public_configs = [ "../..:common_inherited_config" ] | 182 public_configs = [ "../..:common_inherited_config" ] |
179 | 183 |
180 if (is_posix) { | 184 if (is_posix) { |
181 cflags = [ "-msse2" ] | 185 cflags = [ "-msse2" ] |
182 } | 186 } |
183 } | 187 } |
184 } | 188 } |
OLD | NEW |