| 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 'external_ozone_platforms': [], | 8 'external_ozone_platforms': [], |
| 9 'external_ozone_platform_files': [], | 9 'external_ozone_platform_files': [], |
| 10 'external_ozone_platform_deps': [], | 10 'external_ozone_platform_deps': [], |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'type': '<(component)', | 50 'type': '<(component)', |
| 51 'dependencies': [ | 51 'dependencies': [ |
| 52 '<(DEPTH)/base/base.gyp:base', | 52 '<(DEPTH)/base/base.gyp:base', |
| 53 '<(DEPTH)/ipc/ipc.gyp:ipc', | 53 '<(DEPTH)/ipc/ipc.gyp:ipc', |
| 54 '<(DEPTH)/skia/skia.gyp:skia', | 54 '<(DEPTH)/skia/skia.gyp:skia', |
| 55 '<(DEPTH)/ui/events/events.gyp:events', | 55 '<(DEPTH)/ui/events/events.gyp:events', |
| 56 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', | 56 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', |
| 57 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 57 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 58 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 58 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 59 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', | 59 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', |
| 60 '<(DEPTH)/ui/platform_window/platform_window.gyp:platform_window', |
| 60 '<@(external_ozone_platform_deps)', | 61 '<@(external_ozone_platform_deps)', |
| 61 '<@(internal_ozone_platform_deps)', | 62 '<@(internal_ozone_platform_deps)', |
| 62 'ozone_base', | 63 'ozone_base', |
| 63 ], | 64 ], |
| 64 'defines': [ | 65 'defines': [ |
| 65 'OZONE_IMPLEMENTATION', | 66 'OZONE_IMPLEMENTATION', |
| 66 ], | 67 ], |
| 67 'variables': { | 68 'variables': { |
| 68 'platform_list_cc_file': '<(INTERMEDIATE_DIR)/ui/ozone/platform_list.cc'
, | 69 'platform_list_cc_file': '<(INTERMEDIATE_DIR)/ui/ozone/platform_list.cc'
, |
| 69 'platform_list_h_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/platform_li
st.h', | 70 'platform_list_h_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/platform_li
st.h', |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 'platform/dri/gbm.gypi', | 208 'platform/dri/gbm.gypi', |
| 208 ], | 209 ], |
| 209 }], | 210 }], |
| 210 ['<(ozone_platform_test) == 1', { | 211 ['<(ozone_platform_test) == 1', { |
| 211 'includes': [ | 212 'includes': [ |
| 212 'platform/test/test.gypi', | 213 'platform/test/test.gypi', |
| 213 ], | 214 ], |
| 214 }], | 215 }], |
| 215 ], | 216 ], |
| 216 } | 217 } |
| OLD | NEW |