| 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 declare_args() { | 7 declare_args() { |
| 8 # The default platform for Ozone. | 8 # The default platform for Ozone. |
| 9 ozone_platform = "test" | 9 ozone_platform = "test" |
| 10 } | 10 } |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "//ui/events", | 77 "//ui/events", |
| 78 "//ui/events/ozone:events_ozone", | 78 "//ui/events/ozone:events_ozone", |
| 79 "//ui/gfx", | 79 "//ui/gfx", |
| 80 "//ui/gfx/geometry", | 80 "//ui/gfx/geometry", |
| 81 "//ui/gfx/ipc", | 81 "//ui/gfx/ipc", |
| 82 # TODO(GYP) the GYP version has a way to add additional dependencies via | 82 # TODO(GYP) the GYP version has a way to add additional dependencies via |
| 83 # build flags. | 83 # build flags. |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 if (is_chromeos) { | 86 if (is_chromeos) { |
| 87 deps += [ | 87 deps += [ "//ui/dusplay/types" ] |
| 88 #'<(DEPTH)/ui/display/display.gyp:display_types', TODO(GYP) | |
| 89 ] | |
| 90 } | 88 } |
| 91 } | 89 } |
| 92 | 90 |
| 93 # TODO(GYP) implement the ozone platforms. This should check the various | 91 # TODO(GYP) implement the ozone platforms. This should check the various |
| 94 # ozone_platform_*flags, and add deps and add to the ozone_platforms list for | 92 # ozone_platform_*flags, and add deps and add to the ozone_platforms list for |
| 95 # the script below. | 93 # the script below. |
| 96 ozone_platforms = "" | 94 ozone_platforms = "" |
| 97 | 95 |
| 98 # GYP version: ui/ozone/ozone.gyp:generate_ozone_platform_list | 96 # GYP version: ui/ozone/ozone.gyp:generate_ozone_platform_list |
| 99 action("generate_ozone_platform_list") { | 97 action("generate_ozone_platform_list") { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 130 "--namespace=ui", | 128 "--namespace=ui", |
| 131 "--typename=OzonePlatform", | 129 "--typename=OzonePlatform", |
| 132 "--include=ui/ozone/ozone_platform.h", | 130 "--include=ui/ozone/ozone_platform.h", |
| 133 ] | 131 ] |
| 134 | 132 |
| 135 deps = [ ":generate_ozone_platform_list" ] | 133 deps = [ ":generate_ozone_platform_list" ] |
| 136 } | 134 } |
| 137 | 135 |
| 138 # TODO(GYP) ozone_unittests | 136 # TODO(GYP) ozone_unittests |
| 139 # TODO(GYP) platform_caca, dri, other test stuff. | 137 # TODO(GYP) platform_caca, dri, other test stuff. |
| OLD | NEW |