| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'base_target': 0, | 8 'base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 ], | 387 ], |
| 388 'sources!': [ | 388 'sources!': [ |
| 389 'atomicops_internals_x86_gcc.cc', | 389 'atomicops_internals_x86_gcc.cc', |
| 390 'message_pump_glib.cc', | 390 'message_pump_glib.cc', |
| 391 'message_pump_x.cc', | 391 'message_pump_x.cc', |
| 392 ], | 392 ], |
| 393 }], | 393 }], |
| 394 [ 'toolkit_uses_gtk==0', { | 394 [ 'toolkit_uses_gtk==0', { |
| 395 'sources!': [ 'message_pump_gtk.cc', ], | 395 'sources!': [ 'message_pump_gtk.cc', ], |
| 396 }], | 396 }], |
| 397 [ 'touchui==0 and use_aura==0', { | 397 [ '(touchui==0 and use_aura==0) or OS == "win"', { |
| 398 'sources!' : [ 'message_pump_x.cc', ], | 398 'sources!' : [ 'message_pump_x.cc', ], |
| 399 }, { | 399 }, { |
| 400 'sources!' : [ 'message_pump_gtk.cc', ], | 400 'sources!' : [ 'message_pump_gtk.cc', ], |
| 401 'sources/' : [ [ 'include', 'message_pump_x.cc', ] ], | 401 'sources/' : [ [ 'include', 'message_pump_x.cc', ] ], |
| 402 }], | 402 }], |
| 403 [ 'OS != "linux"', { | 403 [ 'OS != "linux"', { |
| 404 'sources!': [ | 404 'sources!': [ |
| 405 # Not automatically excluded by the *linux.cc rules. | 405 # Not automatically excluded by the *linux.cc rules. |
| 406 'linux_util.cc', | 406 'linux_util.cc', |
| 407 ], | 407 ], |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 'third_party/xdg_mime/xdgmimemagic.c', | 732 'third_party/xdg_mime/xdgmimemagic.c', |
| 733 'third_party/xdg_mime/xdgmimemagic.h', | 733 'third_party/xdg_mime/xdgmimemagic.h', |
| 734 'third_party/xdg_mime/xdgmimeparent.c', | 734 'third_party/xdg_mime/xdgmimeparent.c', |
| 735 'third_party/xdg_mime/xdgmimeparent.h', | 735 'third_party/xdg_mime/xdgmimeparent.h', |
| 736 ], | 736 ], |
| 737 }, | 737 }, |
| 738 ], | 738 ], |
| 739 }], | 739 }], |
| 740 ], | 740 ], |
| 741 } | 741 } |
| OLD | NEW |