OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 ], | 97 ], |
98 }, | 98 }, |
99 'conditions': [ | 99 'conditions': [ |
100 ['use_aura==1', { | 100 ['use_aura==1', { |
101 'dependencies': [ | 101 'dependencies': [ |
102 '<(DEPTH)/ui/aura/aura.gyp:aura', | 102 '<(DEPTH)/ui/aura/aura.gyp:aura', |
103 ], | 103 ], |
104 }], | 104 }], |
105 ['toolkit_uses_gtk == 0',{ | 105 ['toolkit_uses_gtk == 0',{ |
106 'sources/': [['exclude', '_cairo\\.cc$']] | 106 'sources/': [['exclude', '_cairo\\.cc$']] |
107 }], | 107 }, { # else: toolkit_uses_gtk == 1 |
108 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], | |
109 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] | |
110 }, { # else: OS=="win" | |
111 'sources/': [['exclude', '_posix\\.cc$']] | |
112 }], | |
113 ['toolkit_uses_gtk == 1', { | |
114 'dependencies': [ | 108 'dependencies': [ |
115 # For FT_Init_FreeType and friends. | 109 # For FT_Init_FreeType and friends. |
116 '../build/linux/system.gyp:freetype2', | 110 '../build/linux/system.gyp:freetype2', |
117 '../build/linux/system.gyp:gtk', | 111 '../build/linux/system.gyp:gtk', |
118 '../build/linux/system.gyp:gtkprint', | 112 '../build/linux/system.gyp:gtkprint', |
119 ], | 113 ], |
120 }], | 114 }], |
121 # Mac-Aura does not support printing. | 115 # Mac-Aura does not support printing. |
122 ['OS=="mac" and use_aura==1',{ | 116 ['OS=="mac" and use_aura==1',{ |
123 'sources!': [ | 117 'sources!': [ |
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 }, | 344 }, |
351 'dependencies': [ | 345 'dependencies': [ |
352 '../base/base.gyp:base_java', | 346 '../base/base.gyp:base_java', |
353 ], | 347 ], |
354 'includes': [ '../build/java.gypi' ], | 348 'includes': [ '../build/java.gypi' ], |
355 } | 349 } |
356 ] | 350 ] |
357 }], | 351 }], |
358 ] | 352 ] |
359 } | 353 } |
OLD | NEW |