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("//ui/ozone/ozone.gni") | 5 import("//ui/ozone/ozone.gni") |
6 | 6 |
7 # The list of platforms that will be built. | 7 # The list of platforms that will be built. |
8 ozone_platforms = [] | 8 ozone_platforms = [] |
9 | 9 |
10 # Extra dependencies to pull into ui/ozone for built platforms. | 10 # Extra dependencies to pull into ui/ozone for built platforms. |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 # chromeos=0, by exclusion rules in filename_rules.gypi due to the | 80 # chromeos=0, by exclusion rules in filename_rules.gypi due to the |
81 # "chromeos" folder name. | 81 # "chromeos" folder name. |
82 "common/chromeos/display_mode_proxy.cc", | 82 "common/chromeos/display_mode_proxy.cc", |
83 "common/chromeos/display_mode_proxy.h", | 83 "common/chromeos/display_mode_proxy.h", |
84 "common/chromeos/display_snapshot_proxy.cc", | 84 "common/chromeos/display_snapshot_proxy.cc", |
85 "common/chromeos/display_snapshot_proxy.h", | 85 "common/chromeos/display_snapshot_proxy.h", |
86 "common/chromeos/display_util.cc", | 86 "common/chromeos/display_util.cc", |
87 "common/chromeos/display_util.h", | 87 "common/chromeos/display_util.h", |
88 "common/chromeos/native_display_delegate_ozone.cc", | 88 "common/chromeos/native_display_delegate_ozone.cc", |
89 "common/chromeos/native_display_delegate_ozone.h", | 89 "common/chromeos/native_display_delegate_ozone.h", |
90 "common/chromeos/touchscreen_device_manager_ozone.cc", | |
91 "common/chromeos/touchscreen_device_manager_ozone.h", | |
92 "common/gpu/ozone_gpu_message_generator.cc", | 90 "common/gpu/ozone_gpu_message_generator.cc", |
93 "common/gpu/ozone_gpu_message_generator.h", | 91 "common/gpu/ozone_gpu_message_generator.h", |
94 "common/gpu/ozone_gpu_message_params.cc", | 92 "common/gpu/ozone_gpu_message_params.cc", |
95 "common/gpu/ozone_gpu_message_params.h", | 93 "common/gpu/ozone_gpu_message_params.h", |
96 "common/gpu/ozone_gpu_messages.h", | 94 "common/gpu/ozone_gpu_messages.h", |
97 "public/ozone_platform.cc", | 95 "public/ozone_platform.cc", |
98 "public/ozone_platform.h", | 96 "public/ozone_platform.h", |
99 "public/ozone_switches.cc", | 97 "public/ozone_switches.cc", |
100 "public/ozone_switches.h", | 98 "public/ozone_switches.h", |
101 "public/ui_thread_gpu.cc", | 99 "public/ui_thread_gpu.cc", |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 test("ozone_unittests") { | 167 test("ozone_unittests") { |
170 sources = [ | 168 sources = [ |
171 "run_all_unittests.cc", | 169 "run_all_unittests.cc", |
172 ] | 170 ] |
173 | 171 |
174 deps = [ | 172 deps = [ |
175 "//base/test:test_support", | 173 "//base/test:test_support", |
176 "//testing/gtest", | 174 "//testing/gtest", |
177 ] + ozone_platform_test_deps | 175 ] + ozone_platform_test_deps |
178 } | 176 } |
OLD | NEW |