| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Normally, the external_ozone_platform* variables below can be | 8 # Normally, the external_ozone_platform* variables below can be |
| 9 # overridden by supplement.gypi which must exist exactly one level | 9 # overridden by supplement.gypi which must exist exactly one level |
| 10 # below the top-level src directory. They can now also be set in | 10 # below the top-level src directory. They can now also be set in |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 '<(DEPTH)/base/base.gyp:base', | 108 '<(DEPTH)/base/base.gyp:base', |
| 109 '<(DEPTH)/ipc/ipc.gyp:ipc', | 109 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 110 '<(DEPTH)/skia/skia.gyp:skia', | 110 '<(DEPTH)/skia/skia.gyp:skia', |
| 111 '<(DEPTH)/ui/display/display.gyp:display_types', | 111 '<(DEPTH)/ui/display/display.gyp:display_types', |
| 112 '<(DEPTH)/ui/display/display.gyp:display_util', | 112 '<(DEPTH)/ui/display/display.gyp:display_util', |
| 113 '<(DEPTH)/ui/events/events.gyp:events', | 113 '<(DEPTH)/ui/events/events.gyp:events', |
| 114 '<(DEPTH)/ui/events/devices/events_devices.gyp:events_devices', | 114 '<(DEPTH)/ui/events/devices/events_devices.gyp:events_devices', |
| 115 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', | 115 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', |
| 116 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 116 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 117 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 117 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 118 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
| 118 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', | 119 '<(DEPTH)/ui/gfx/ipc/skia/gfx_ipc_skia.gyp:gfx_ipc_skia', |
| 119 '<@(external_ozone_platform_deps)', | 120 '<@(external_ozone_platform_deps)', |
| 120 '<@(internal_ozone_platform_deps)', | 121 '<@(internal_ozone_platform_deps)', |
| 121 'ozone_base', | 122 'ozone_base', |
| 122 ], | 123 ], |
| 123 'defines': [ | 124 'defines': [ |
| 124 'OZONE_IMPLEMENTATION', | 125 'OZONE_IMPLEMENTATION', |
| 125 ], | 126 ], |
| 126 'variables': { | 127 'variables': { |
| 127 'platform_list_cc_file': '<(INTERMEDIATE_DIR)/ui/ozone/platform_list.cc'
, | 128 'platform_list_cc_file': '<(INTERMEDIATE_DIR)/ui/ozone/platform_list.cc'
, |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 'platform/headless/headless.gypi', | 279 'platform/headless/headless.gypi', |
| 279 ], | 280 ], |
| 280 }], | 281 }], |
| 281 ['<(ozone_platform_wayland) == 1', { | 282 ['<(ozone_platform_wayland) == 1', { |
| 282 'includes': [ | 283 'includes': [ |
| 283 'platform/wayland/wayland.gypi', | 284 'platform/wayland/wayland.gypi', |
| 284 ], | 285 ], |
| 285 }], | 286 }], |
| 286 ], | 287 ], |
| 287 } | 288 } |
| OLD | NEW |