OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 'action': [ | 338 'action': [ |
339 '<@(grit_cmd)', | 339 '<@(grit_cmd)', |
340 '-i', '<(input_path)', 'build', | 340 '-i', '<(input_path)', 'build', |
341 '-o', '<(grit_out_dir)', | 341 '-o', '<(grit_out_dir)', |
342 '-D', '<(chrome_build)' | 342 '-D', '<(chrome_build)' |
343 ], | 343 ], |
344 'conditions': [ | 344 'conditions': [ |
345 ['chromeos==1', { | 345 ['chromeos==1', { |
346 'action': ['-D', 'chromeos'], | 346 'action': ['-D', 'chromeos'], |
347 }], | 347 }], |
| 348 ['toolkit_views==1', { |
| 349 'action': ['-D', 'toolkit_views'], |
| 350 }], |
348 ['use_titlecase_in_grd_files==1', { | 351 ['use_titlecase_in_grd_files==1', { |
349 'action': ['-D', 'use_titlecase'], | 352 'action': ['-D', 'use_titlecase'], |
350 }], | 353 }], |
351 ], | 354 ], |
352 'message': 'Generating resources from <(input_path)', | 355 'message': 'Generating resources from <(input_path)', |
353 }, | 356 }, |
354 ], | 357 ], |
355 'direct_dependent_settings': { | 358 'direct_dependent_settings': { |
356 'include_dirs': [ | 359 'include_dirs': [ |
357 '<(grit_out_dir)', | 360 '<(grit_out_dir)', |
(...skipping 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1833 }], # targets | 1836 }], # targets |
1834 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1837 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1835 ], # 'conditions' | 1838 ], # 'conditions' |
1836 } | 1839 } |
1837 | 1840 |
1838 # Local Variables: | 1841 # Local Variables: |
1839 # tab-width:2 | 1842 # tab-width:2 |
1840 # indent-tabs-mode:nil | 1843 # indent-tabs-mode:nil |
1841 # End: | 1844 # End: |
1842 # vim: set expandtab tabstop=2 shiftwidth=2: | 1845 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |