| 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': [], |
| 11 }, | 11 }, |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 'target_name': 'ozone', | 14 'target_name': 'ozone', |
| 15 'type': '<(component)', | 15 'type': '<(component)', |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 '<(DEPTH)/base/base.gyp:base', | 17 '<(DEPTH)/base/base.gyp:base', |
| 18 '<(DEPTH)/ui/events/events.gyp:events', | 18 '<(DEPTH)/ui/events/events.gyp:events', |
| 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 20 '<(DEPTH)/skia/skia.gyp:skia', | 21 '<(DEPTH)/skia/skia.gyp:skia', |
| 21 '<@(external_ozone_platform_deps)', | 22 '<@(external_ozone_platform_deps)', |
| 22 ], | 23 ], |
| 23 'defines': [ | 24 'defines': [ |
| 24 'OZONE_IMPLEMENTATION', | 25 'OZONE_IMPLEMENTATION', |
| 25 ], | 26 ], |
| 26 'variables': { | 27 'variables': { |
| 27 'platform_list_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/ozone_platfor
m_list.cc', | 28 'platform_list_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/ozone_platfor
m_list.cc', |
| 28 'ozone_platforms': [ | 29 'ozone_platforms': [ |
| 29 '<@(external_ozone_platforms)', | 30 '<@(external_ozone_platforms)', |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 } | 86 } |
| 86 }, { # ozone_platform_test==0 | 87 }, { # ozone_platform_test==0 |
| 87 'sources/': [ | 88 'sources/': [ |
| 88 ['exclude', '^platform/test/'], | 89 ['exclude', '^platform/test/'], |
| 89 ] | 90 ] |
| 90 }], | 91 }], |
| 91 ] | 92 ] |
| 92 }, | 93 }, |
| 93 ], | 94 ], |
| 94 } | 95 } |
| OLD | NEW |