| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 | 8 |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 'sources!': [ | 446 'sources!': [ |
| 447 'events/event_x.cc', | 447 'events/event_x.cc', |
| 448 ], | 448 ], |
| 449 }], | 449 }], |
| 450 ['use_aura==0 or OS!="win"', { | 450 ['use_aura==0 or OS!="win"', { |
| 451 'sources!': [ | 451 'sources!': [ |
| 452 'widget/widget_message_filter.cc', | 452 'widget/widget_message_filter.cc', |
| 453 'widget/widget_message_filter.h', | 453 'widget/widget_message_filter.h', |
| 454 ], | 454 ], |
| 455 }], | 455 }], |
| 456 ['use_aura==1 or OS!="win"', { | |
| 457 'sources!': [ | |
| 458 'win/fullscreen_handler.cc', | |
| 459 'win/fullscreen_handler.h', | |
| 460 'win/hwnd_message_handler.cc', | |
| 461 'win/hwnd_message_handler.h', | |
| 462 'win/hwnd_message_handler_delegate.h', | |
| 463 'win/scoped_fullscreen_visibility.cc', | |
| 464 'win/scoped_fullscreen_visibility.h', | |
| 465 ], | |
| 466 }], | |
| 467 ['OS!="win"', { | 456 ['OS!="win"', { |
| 468 'sources!': [ | 457 'sources!': [ |
| 469 'win/fullscreen_handler.cc', | 458 'win/fullscreen_handler.cc', |
| 470 'win/fullscreen_handler.h', | 459 'win/fullscreen_handler.h', |
| 471 'win/hwnd_message_handler.cc', | 460 'win/hwnd_message_handler.cc', |
| 472 'win/hwnd_message_handler.h', | 461 'win/hwnd_message_handler.h', |
| 473 'win/hwnd_message_handler_delegate.h', | 462 'win/hwnd_message_handler_delegate.h', |
| 474 'win/scoped_fullscreen_visibility.cc', | 463 'win/scoped_fullscreen_visibility.cc', |
| 475 'win/scoped_fullscreen_visibility.h', | 464 'win/scoped_fullscreen_visibility.h', |
| 476 'widget/widget_hwnd_utils.cc', | 465 'widget/widget_hwnd_utils.cc', |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 'sources/': [ | 822 'sources/': [ |
| 834 # This is needed because the aura rule strips it from the default | 823 # This is needed because the aura rule strips it from the default |
| 835 # sources list. | 824 # sources list. |
| 836 ['include', '^../../content/app/startup_helper_win.cc'], | 825 ['include', '^../../content/app/startup_helper_win.cc'], |
| 837 ], | 826 ], |
| 838 }], | 827 }], |
| 839 ], | 828 ], |
| 840 }, # target_name: views_examples_with_content_exe | 829 }, # target_name: views_examples_with_content_exe |
| 841 ], | 830 ], |
| 842 } | 831 } |
| OLD | NEW |