| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 if (!is_win && !is_mac && !use_x11) { | 117 if (!is_win && !is_mac && !use_x11) { |
| 118 sources += [ | 118 sources += [ |
| 119 "mouse_cursor_monitor_null.cc", | 119 "mouse_cursor_monitor_null.cc", |
| 120 "screen_capturer_null.cc", | 120 "screen_capturer_null.cc", |
| 121 "window_capturer_null.cc", | 121 "window_capturer_null.cc", |
| 122 ] | 122 ] |
| 123 } | 123 } |
| 124 | 124 |
| 125 if (!is_ios) { | 125 if (!is_ios) { |
| 126 sources += [ | 126 sources += [ |
| 127 "differ.cc", | |
| 128 "differ.h", | |
| 129 "differ_block.cc", | 127 "differ_block.cc", |
| 130 "differ_block.h", | 128 "differ_block.h", |
| 131 "screen_capturer_differ_wrapper.cc", | 129 "screen_capturer_differ_wrapper.cc", |
| 132 "screen_capturer_differ_wrapper.h", | 130 "screen_capturer_differ_wrapper.h", |
| 133 ] | 131 ] |
| 134 } | 132 } |
| 135 | 133 |
| 136 if (is_mac) { | 134 if (is_mac) { |
| 137 libs = [ | 135 libs = [ |
| 138 "AppKit.framework", | 136 "AppKit.framework", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 sources = [ | 171 sources = [ |
| 174 "differ_vector_sse2.cc", | 172 "differ_vector_sse2.cc", |
| 175 "differ_vector_sse2.h", | 173 "differ_vector_sse2.h", |
| 176 ] | 174 ] |
| 177 | 175 |
| 178 if (is_posix) { | 176 if (is_posix) { |
| 179 cflags = [ "-msse2" ] | 177 cflags = [ "-msse2" ] |
| 180 } | 178 } |
| 181 } | 179 } |
| 182 } | 180 } |
| OLD | NEW |