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 14 matching lines...) Expand all Loading... | |
25 'OZONE_IMPLEMENTATION', | 25 'OZONE_IMPLEMENTATION', |
26 ], | 26 ], |
27 'variables': { | 27 'variables': { |
28 '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', |
29 'ozone_platforms': [ | 29 'ozone_platforms': [ |
30 '<@(external_ozone_platforms)', | 30 '<@(external_ozone_platforms)', |
31 ], | 31 ], |
32 }, | 32 }, |
33 'sources': [ | 33 'sources': [ |
34 '<(platform_list_file)', | 34 '<(platform_list_file)', |
35 'common/chromeos/native_display_delegate_ozone.cc', | |
rjkroege
2014/04/11 21:53:09
adding a # excluded by filename_rules.gypi might h
dnicoara
2014/04/14 14:43:03
Done.
| |
36 'common/chromeos/native_display_delegate_ozone.h', | |
35 'ozone_platform.cc', | 37 'ozone_platform.cc', |
36 'ozone_platform.h', | 38 'ozone_platform.h', |
37 'ozone_switches.cc', | 39 'ozone_switches.cc', |
38 'ozone_switches.h', | 40 'ozone_switches.h', |
39 'platform/dri/ozone_platform_dri.cc', | 41 'platform/dri/ozone_platform_dri.cc', |
40 'platform/dri/ozone_platform_dri.h', | 42 'platform/dri/ozone_platform_dri.h', |
41 'platform/dri/cursor_factory_evdev_dri.cc', | 43 'platform/dri/cursor_factory_evdev_dri.cc', |
42 'platform/dri/cursor_factory_evdev_dri.h', | 44 'platform/dri/cursor_factory_evdev_dri.h', |
43 'platform/test/ozone_platform_test.cc', | 45 'platform/test/ozone_platform_test.cc', |
44 'platform/test/ozone_platform_test.h', | 46 'platform/test/ozone_platform_test.h', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
85 'variables': { | 87 'variables': { |
86 'ozone_platforms': [ | 88 'ozone_platforms': [ |
87 'test' | 89 'test' |
88 ], | 90 ], |
89 } | 91 } |
90 }, { # ozone_platform_test==0 | 92 }, { # ozone_platform_test==0 |
91 'sources/': [ | 93 'sources/': [ |
92 ['exclude', '^platform/test/'], | 94 ['exclude', '^platform/test/'], |
93 ] | 95 ] |
94 }], | 96 }], |
97 ['chromeos==1', { | |
98 'dependencies': [ | |
99 '<(DEPTH)/ui/display/display.gyp:display_types', | |
100 ], | |
101 }], | |
95 ] | 102 ] |
96 }, | 103 }, |
97 ], | 104 ], |
98 } | 105 } |
OLD | NEW |