| 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/gfx/gfx.gyp:gfx', | 18 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 19 '<(DEPTH)/ui/events/events.gyp:events', | |
| 20 '<(DEPTH)/skia/skia.gyp:skia', | 19 '<(DEPTH)/skia/skia.gyp:skia', |
| 21 '<@(external_ozone_platform_deps)', | 20 '<@(external_ozone_platform_deps)', |
| 22 ], | 21 ], |
| 23 'defines': [ | 22 'defines': [ |
| 24 'OZONE_IMPLEMENTATION', | 23 'OZONE_IMPLEMENTATION', |
| 25 ], | 24 ], |
| 26 'variables': { | 25 'variables': { |
| 27 'platform_list_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/ozone_platfor
m_list.cc', | 26 'platform_list_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/ozone_platfor
m_list.cc', |
| 28 'ozone_platforms': [ | 27 'ozone_platforms': [ |
| 29 '<@(external_ozone_platforms)', | 28 '<@(external_ozone_platforms)', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 } | 81 } |
| 83 }, { # ozone_platform_test==0 | 82 }, { # ozone_platform_test==0 |
| 84 'sources/': [ | 83 'sources/': [ |
| 85 ['exclude', '^platform/test/'], | 84 ['exclude', '^platform/test/'], |
| 86 ] | 85 ] |
| 87 }], | 86 }], |
| 88 ] | 87 ] |
| 89 }, | 88 }, |
| 90 ], | 89 ], |
| 91 } | 90 } |
| OLD | NEW |