OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("display") { | 8 component("display") { |
9 sources = [ | 9 sources = [ |
10 "android/screen_android.cc", | 10 "android/screen_android.cc", |
(...skipping 15 matching lines...) Expand all Loading... | |
26 "chromeos/x11/display_mode_x11.cc", | 26 "chromeos/x11/display_mode_x11.cc", |
27 "chromeos/x11/display_mode_x11.h", | 27 "chromeos/x11/display_mode_x11.h", |
28 "chromeos/x11/display_snapshot_x11.cc", | 28 "chromeos/x11/display_snapshot_x11.cc", |
29 "chromeos/x11/display_snapshot_x11.h", | 29 "chromeos/x11/display_snapshot_x11.h", |
30 "chromeos/x11/display_util_x11.cc", | 30 "chromeos/x11/display_util_x11.cc", |
31 "chromeos/x11/display_util_x11.h", | 31 "chromeos/x11/display_util_x11.h", |
32 "chromeos/x11/native_display_delegate_x11.cc", | 32 "chromeos/x11/native_display_delegate_x11.cc", |
33 "chromeos/x11/native_display_delegate_x11.h", | 33 "chromeos/x11/native_display_delegate_x11.h", |
34 "chromeos/x11/native_display_event_dispatcher_x11.cc", | 34 "chromeos/x11/native_display_event_dispatcher_x11.cc", |
35 "chromeos/x11/native_display_event_dispatcher_x11.h", | 35 "chromeos/x11/native_display_event_dispatcher_x11.h", |
36 "desktop.cc", | |
sky
2016/07/01 19:43:39
I think you forgot the git add desktop.*
| |
37 "desktop.h", | |
38 "desktop_observer.cc", | |
39 "desktop_observer.h", | |
36 "display.cc", | 40 "display.cc", |
37 "display.h", | 41 "display.h", |
38 "display_change_notifier.cc", | 42 "display_change_notifier.cc", |
39 "display_change_notifier.h", | 43 "display_change_notifier.h", |
40 "display_export.h", | 44 "display_export.h", |
41 "display_finder.cc", | 45 "display_finder.cc", |
42 "display_finder.h", | 46 "display_finder.h", |
43 "display_observer.cc", | 47 "display_observer.cc", |
44 "display_observer.h", | 48 "display_observer.h", |
45 "display_switches.cc", | 49 "display_switches.cc", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 sources -= [ "display_change_notifier_unittest.cc" ] | 223 sources -= [ "display_change_notifier_unittest.cc" ] |
220 } | 224 } |
221 | 225 |
222 if (is_chromeos && use_ozone) { | 226 if (is_chromeos && use_ozone) { |
223 sources -= [ | 227 sources -= [ |
224 "chromeos/x11/display_util_x11_unittest.cc", | 228 "chromeos/x11/display_util_x11_unittest.cc", |
225 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", | 229 "chromeos/x11/native_display_event_dispatcher_x11_unittest.cc", |
226 ] | 230 ] |
227 } | 231 } |
228 } | 232 } |
OLD | NEW |