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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 ], | 451 ], |
452 }], | 452 }], |
453 ], | 453 ], |
454 }], | 454 }], |
455 ['use_aura==0', { | 455 ['use_aura==0', { |
456 'sources/': [ | 456 'sources/': [ |
457 ['exclude', '../aura/desktop/'], | 457 ['exclude', '../aura/desktop/'], |
458 ['exclude', 'corewm'], | 458 ['exclude', 'corewm'], |
459 ['exclude', '/desktop_[^/]*\\.cc$'], | 459 ['exclude', '/desktop_[^/]*\\.cc$'], |
460 ['exclude', '/x11_[^/]*\\.cc$'], | 460 ['exclude', '/x11_[^/]*\\.cc$'], |
461 ['exclude', 'widget/native_widget_aura_window_observer.cc'], | 461 ], |
462 ['exclude', 'widget/native_widget_aura_window_observer.h'], | 462 'sources!': [ |
463 ['exclude', 'widget/widget_aura_utils.cc'], | 463 'bubble/tray_bubble_view.cc', |
464 ['exclude', 'widget/widget_aura_utils.h'], | 464 'bubble/tray_bubble_view.h', |
| 465 'widget/native_widget_aura_window_observer.cc', |
| 466 'widget/native_widget_aura_window_observer.h', |
| 467 'widget/widget_aura_utils.cc', |
| 468 'widget/widget_aura_utils.h', |
465 ], | 469 ], |
466 }], | 470 }], |
467 ['chromeos==1', { | 471 ['chromeos==1', { |
468 'sources/': [ | 472 'sources/': [ |
469 ['exclude', '/desktop_[^/]*\\.cc$'], | 473 ['exclude', '/desktop_[^/]*\\.cc$'], |
470 ['exclude', 'widget/x11_*'], | 474 ['exclude', 'widget/x11_*'], |
471 ['exclude', '../aura/desktop/'], | 475 ['exclude', '../aura/desktop/'], |
472 ], | 476 ], |
473 }], | 477 }], |
474 ['use_aura==0 and OS=="win"', { | 478 ['use_aura==0 and OS=="win"', { |
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
915 'sources/': [ | 919 'sources/': [ |
916 # This is needed because the aura rule strips it from the default | 920 # This is needed because the aura rule strips it from the default |
917 # sources list. | 921 # sources list. |
918 ['include', '^../../content/app/startup_helper_win.cc'], | 922 ['include', '^../../content/app/startup_helper_win.cc'], |
919 ], | 923 ], |
920 }], | 924 }], |
921 ], | 925 ], |
922 }, # target_name: views_examples_with_content_exe | 926 }, # target_name: views_examples_with_content_exe |
923 ], | 927 ], |
924 } | 928 } |
OLD | NEW |