| 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 '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': [ |
| 11 ['OS=="win"', {'sources/': [ | 11 ['OS=="win"', {'sources/': [ |
| 12 ['include', '_(win)\\.cc$'], | 12 ['include', '_(win)\\.cc$'], |
| 13 ['include', '/win/'], | 13 ['include', '/win/'], |
| 14 ['include', '/win_[^/]*\\.cc$'], | 14 ['include', '/win_[^/]*\\.cc$'], |
| 15 ]}], | 15 ]}], |
| 16 ['touchui==0', { | |
| 17 'sources/': [ | |
| 18 ['exclude', '_(touch)\\.cc$'], | |
| 19 ], | |
| 20 }], | |
| 21 ['use_aura==1', { | 16 ['use_aura==1', { |
| 22 'sources/': [ ['exclude', '_win\\.(h|cc)$'], | 17 'sources/': [ ['exclude', '_win\\.(h|cc)$'], |
| 23 ['exclude', '_gtk\\.(h|cc)$'], | 18 ['exclude', '_gtk\\.(h|cc)$'], |
| 24 ['exclude', '_x\\.(h|cc)$'] ], | 19 ['exclude', '_x\\.(h|cc)$'] ], |
| 25 'dependencies': [ '../ui/aura/aura.gyp:aura', ], | 20 'dependencies': [ '../ui/aura/aura.gyp:aura', ], |
| 26 }], | 21 }], |
| 27 ], | 22 ], |
| 28 }, | 23 }, |
| 29 'targets': [ | 24 'targets': [ |
| 30 { | 25 { |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 }, | 715 }, |
| 721 'sources': [ | 716 'sources': [ |
| 722 '../ui/views/examples/table_example.cc', | 717 '../ui/views/examples/table_example.cc', |
| 723 '../ui/views/examples/table_example.h', | 718 '../ui/views/examples/table_example.h', |
| 724 ], | 719 ], |
| 725 }], | 720 }], |
| 726 ], | 721 ], |
| 727 }, | 722 }, |
| 728 ], | 723 ], |
| 729 } | 724 } |
| OLD | NEW |