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 'internal_ozone_platforms': [], | 11 'internal_ozone_platforms': [], |
12 'internal_ozone_platform_deps': [], | 12 'internal_ozone_platform_deps': [], |
13 }, | 13 }, |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'ozone', | 16 'target_name': 'ozone', |
17 'type': '<(component)', | 17 'type': '<(component)', |
18 'dependencies': [ | 18 'dependencies': [ |
19 '<(DEPTH)/base/base.gyp:base', | 19 '<(DEPTH)/base/base.gyp:base', |
20 '<(DEPTH)/ui/events/events.gyp:events', | 20 '<(DEPTH)/ui/events/events.gyp:events', |
21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 21 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
22 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 22 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
| 23 '<(DEPTH)/ui/gfx/ozone/gfx_ozone.gyp:gfx_ozone', |
23 '<(DEPTH)/skia/skia.gyp:skia', | 24 '<(DEPTH)/skia/skia.gyp:skia', |
24 '<@(external_ozone_platform_deps)', | 25 '<@(external_ozone_platform_deps)', |
25 '<@(internal_ozone_platform_deps)', | 26 '<@(internal_ozone_platform_deps)', |
26 ], | 27 ], |
27 'defines': [ | 28 'defines': [ |
28 'OZONE_IMPLEMENTATION', | 29 'OZONE_IMPLEMENTATION', |
29 ], | 30 ], |
30 'variables': { | 31 'variables': { |
31 'platform_list_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/ozone_platfor
m_list.cc', | 32 'platform_list_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/ozone_platfor
m_list.cc', |
32 'ozone_platforms': [ | 33 'ozone_platforms': [ |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 'platform/dri/dri.gypi', | 97 'platform/dri/dri.gypi', |
97 ], | 98 ], |
98 }], | 99 }], |
99 ['<(ozone_platform_test) == 1', { | 100 ['<(ozone_platform_test) == 1', { |
100 'includes': [ | 101 'includes': [ |
101 'platform/test/test.gypi', | 102 'platform/test/test.gypi', |
102 ], | 103 ], |
103 }], | 104 }], |
104 ], | 105 ], |
105 } | 106 } |
OLD | NEW |