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 { | 5 { |
6 'variables' : { | 6 'variables' : { |
7 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
(...skipping 1873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1884 ], | 1884 ], |
1885 'sources!': [ | 1885 'sources!': [ |
1886 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc', | 1886 'browser/gtk/tabs/tab_renderer_gtk_unittest.cc', |
1887 ], | 1887 ], |
1888 }, { # else: toolkit_views == 0 | 1888 }, { # else: toolkit_views == 0 |
1889 'sources/': [ | 1889 'sources/': [ |
1890 ['exclude', '^browser/ui/views/'], | 1890 ['exclude', '^browser/ui/views/'], |
1891 ['exclude', '^../views/'], | 1891 ['exclude', '^../views/'], |
1892 ], | 1892 ], |
1893 }], | 1893 }], |
1894 ['use_openssl==1', { | |
1895 'sources/': [ | |
1896 # OpenSSL build does not support firefix importer. See http://crbug. com/64926 | |
wtc
2010/12/01 22:50:05
Nit: this line exceeds the 80-character limit.
joth
2010/12/02 17:12:01
Done
- I didn't think 80 cols applied in .gyp file
| |
1897 ['exclude', '^browser/importer/'], | |
1898 ], | |
1899 }], | |
1894 ], | 1900 ], |
1895 }, | 1901 }, |
1896 { | 1902 { |
1897 # Executable that runs each browser test in a new process. | 1903 # Executable that runs each browser test in a new process. |
1898 'target_name': 'browser_tests', | 1904 'target_name': 'browser_tests', |
1899 'type': 'executable', | 1905 'type': 'executable', |
1900 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', | 1906 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', |
1901 'dependencies': [ | 1907 'dependencies': [ |
1902 'browser', | 1908 'browser', |
1903 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 1909 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
(...skipping 1619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3523 ] | 3529 ] |
3524 }], # 'coverage!=0' | 3530 }], # 'coverage!=0' |
3525 ], # 'conditions' | 3531 ], # 'conditions' |
3526 } | 3532 } |
3527 | 3533 |
3528 # Local Variables: | 3534 # Local Variables: |
3529 # tab-width:2 | 3535 # tab-width:2 |
3530 # indent-tabs-mode:nil | 3536 # indent-tabs-mode:nil |
3531 # End: | 3537 # End: |
3532 # vim: set expandtab tabstop=2 shiftwidth=2: | 3538 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |