| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "differ_block.cc", | 46 "differ_block.cc", |
| 47 "differ_block.h", | 47 "differ_block.h", |
| 48 "mac/desktop_configuration.h", | 48 "mac/desktop_configuration.h", |
| 49 "mac/desktop_configuration.mm", | 49 "mac/desktop_configuration.mm", |
| 50 "mac/desktop_configuration_monitor.cc", | 50 "mac/desktop_configuration_monitor.cc", |
| 51 "mac/desktop_configuration_monitor.h", | 51 "mac/desktop_configuration_monitor.h", |
| 52 "mac/full_screen_chrome_window_detector.cc", | 52 "mac/full_screen_chrome_window_detector.cc", |
| 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", | |
| 57 "mac/window_list_utils.h", | 56 "mac/window_list_utils.h", |
| 57 "mac/window_list_utils.mm", |
| 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_frame_queue.h", | 63 "screen_capture_frame_queue.h", |
| 64 "screen_capturer.h", | 64 "screen_capturer.h", |
| 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", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 ] | 158 ] |
| 159 | 159 |
| 160 configs += [ "../..:common_config" ] | 160 configs += [ "../..:common_config" ] |
| 161 public_configs = [ "../..:common_inherited_config" ] | 161 public_configs = [ "../..:common_inherited_config" ] |
| 162 | 162 |
| 163 if (is_posix && !is_mac) { | 163 if (is_posix && !is_mac) { |
| 164 cflags = [ "-msse2" ] | 164 cflags = [ "-msse2" ] |
| 165 } | 165 } |
| 166 } | 166 } |
| 167 } | 167 } |
| OLD | NEW |