| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 defines = [ "OZONE_IMPLEMENTATION" ] | 68 defines = [ "OZONE_IMPLEMENTATION" ] |
| 69 | 69 |
| 70 deps = [ | 70 deps = [ |
| 71 ":generate_constructor_list", | 71 ":generate_constructor_list", |
| 72 ":generate_ozone_platform_list", | 72 ":generate_ozone_platform_list", |
| 73 ":ozone_base", | 73 ":ozone_base", |
| 74 "//base", | 74 "//base", |
| 75 "//ipc", | 75 "//ipc", |
| 76 "//skia", | 76 "//skia", |
| 77 "//ui/events", | 77 "//ui/events", |
| 78 "//ui/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 += [ |
| 88 #'<(DEPTH)/ui/display/display.gyp:display_types', TODO(GYP) | 88 #'<(DEPTH)/ui/display/display.gyp:display_types', TODO(GYP) |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "--namespace=ui", | 130 "--namespace=ui", |
| 131 "--typename=OzonePlatform", | 131 "--typename=OzonePlatform", |
| 132 "--include=ui/ozone/ozone_platform.h", | 132 "--include=ui/ozone/ozone_platform.h", |
| 133 ] | 133 ] |
| 134 | 134 |
| 135 deps = [ ":generate_ozone_platform_list" ] | 135 deps = [ ":generate_ozone_platform_list" ] |
| 136 } | 136 } |
| 137 | 137 |
| 138 # TODO(GYP) ozone_unittests | 138 # TODO(GYP) ozone_unittests |
| 139 # TODO(GYP) platform_caca, dri, other test stuff. | 139 # TODO(GYP) platform_caca, dri, other test stuff. |
| OLD | NEW |