| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. | 8 'toolkit_views2': 0, # ui/views/ is an experimental framework on Windows. |
| 9 }, | 9 }, |
| 10 'target_defaults': { | 10 'target_defaults': { |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 'gfx/skia_utils_gtk.cc', | 289 'gfx/skia_utils_gtk.cc', |
| 290 'gfx/skia_utils_gtk.h', | 290 'gfx/skia_utils_gtk.h', |
| 291 'gfx/transform.h', | 291 'gfx/transform.h', |
| 292 'gfx/transform.cc', | 292 'gfx/transform.cc', |
| 293 ], | 293 ], |
| 294 'conditions': [ | 294 'conditions': [ |
| 295 ['use_aura==1', { | 295 ['use_aura==1', { |
| 296 'sources/': [ | 296 'sources/': [ |
| 297 ['exclude', 'gfx/screen_win.cc'], | 297 ['exclude', 'gfx/screen_win.cc'], |
| 298 ['exclude', 'base/win/mouse_wheel_util.cc'], | 298 ['exclude', 'base/win/mouse_wheel_util.cc'], |
| 299 ['exclude', 'base/win/mouse_wheel_util.h'], | 299 ['exclude', 'base/win/mouse_wheel_util.h'], |
| 300 ], | 300 ], |
| 301 }], | 301 }], |
| 302 ['toolkit_uses_gtk == 1', { | 302 ['toolkit_uses_gtk == 1', { |
| 303 'dependencies': [ | 303 'dependencies': [ |
| 304 # font_gtk.cc uses fontconfig. | 304 # font_gtk.cc uses fontconfig. |
| 305 # TODO(evanm): I think this is wrong; it should just use GTK. | 305 # TODO(evanm): I think this is wrong; it should just use GTK. |
| 306 '../build/linux/system.gyp:fontconfig', | 306 '../build/linux/system.gyp:fontconfig', |
| 307 '../build/linux/system.gyp:gtk', | 307 '../build/linux/system.gyp:gtk', |
| 308 '../build/linux/system.gyp:x11', | 308 '../build/linux/system.gyp:x11', |
| 309 '../build/linux/system.gyp:xext', | 309 '../build/linux/system.gyp:xext', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 'configurations': { | 540 'configurations': { |
| 541 'Common_Base': { | 541 'Common_Base': { |
| 542 'msvs_target_platform': 'x64', | 542 'msvs_target_platform': 'x64', |
| 543 }, | 543 }, |
| 544 }, | 544 }, |
| 545 }, | 545 }, |
| 546 ], | 546 ], |
| 547 }], | 547 }], |
| 548 ], | 548 ], |
| 549 } | 549 } |
| OLD | NEW |