| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "common/chromeos/touchscreen_device_manager_ozone.h", | 91 "common/chromeos/touchscreen_device_manager_ozone.h", |
| 92 "common/gpu/ozone_gpu_message_generator.cc", | 92 "common/gpu/ozone_gpu_message_generator.cc", |
| 93 "common/gpu/ozone_gpu_message_generator.h", | 93 "common/gpu/ozone_gpu_message_generator.h", |
| 94 "common/gpu/ozone_gpu_message_params.cc", | 94 "common/gpu/ozone_gpu_message_params.cc", |
| 95 "common/gpu/ozone_gpu_message_params.h", | 95 "common/gpu/ozone_gpu_message_params.h", |
| 96 "common/gpu/ozone_gpu_messages.h", | 96 "common/gpu/ozone_gpu_messages.h", |
| 97 "public/ozone_platform.cc", | 97 "public/ozone_platform.cc", |
| 98 "public/ozone_platform.h", | 98 "public/ozone_platform.h", |
| 99 "public/ozone_switches.cc", | 99 "public/ozone_switches.cc", |
| 100 "public/ozone_switches.h", | 100 "public/ozone_switches.h", |
| 101 "public/ui_thread_gpu.cc", |
| 102 "public/ui_thread_gpu.h", |
| 101 "platform_selection.cc", | 103 "platform_selection.cc", |
| 102 "platform_selection.h", | 104 "platform_selection.h", |
| 103 ] | 105 ] |
| 104 | 106 |
| 105 defines = [ "OZONE_IMPLEMENTATION" ] | 107 defines = [ "OZONE_IMPLEMENTATION" ] |
| 106 | 108 |
| 107 deps = [ | 109 deps = [ |
| 108 ":generate_constructor_list", | 110 ":generate_constructor_list", |
| 109 ":generate_ozone_platform_list", | 111 ":generate_ozone_platform_list", |
| 110 ":ozone_base", | 112 ":ozone_base", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 test("ozone_unittests") { | 169 test("ozone_unittests") { |
| 168 sources = [ | 170 sources = [ |
| 169 "run_all_unittests.cc", | 171 "run_all_unittests.cc", |
| 170 ] | 172 ] |
| 171 | 173 |
| 172 deps = [ | 174 deps = [ |
| 173 "//base/test:test_support", | 175 "//base/test:test_support", |
| 174 "//testing/gtest", | 176 "//testing/gtest", |
| 175 ] + ozone_platform_test_deps | 177 ] + ozone_platform_test_deps |
| 176 } | 178 } |
| OLD | NEW |