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 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1927 ['exclude', '^../views/'], | 1927 ['exclude', '^../views/'], |
1928 ], | 1928 ], |
1929 }], | 1929 }], |
1930 ['use_openssl==1', { | 1930 ['use_openssl==1', { |
1931 'sources/': [ | 1931 'sources/': [ |
1932 # OpenSSL build does not support firefox importer. See | 1932 # OpenSSL build does not support firefox importer. See |
1933 # http://crbug.com/64926 | 1933 # http://crbug.com/64926 |
1934 ['exclude', '^browser/importer/'], | 1934 ['exclude', '^browser/importer/'], |
1935 ], | 1935 ], |
1936 }], | 1936 }], |
| 1937 # We are migrating to client-based geolocation. Once the migration |
| 1938 # has finished, ENABLE_CLIENT_BASED_GEOLOCATION will disappear. |
| 1939 # See bugs: |
| 1940 # https://bugs.webkit.org/show_bug.cgi?id=45752 and |
| 1941 # http://code.google.com/p/chromium/issues/detail?id=59907 |
| 1942 ['"ENABLE_CLIENT_BASED_GEOLOCATION=1" in feature_defines', { |
| 1943 'defines': [ 'ENABLE_CLIENT_BASED_GEOLOCATION=1' ] |
| 1944 }], |
1937 ], | 1945 ], |
1938 }, | 1946 }, |
1939 { | 1947 { |
1940 # Executable that runs each browser test in a new process. | 1948 # Executable that runs each browser test in a new process. |
1941 'target_name': 'browser_tests', | 1949 'target_name': 'browser_tests', |
1942 'type': 'executable', | 1950 'type': 'executable', |
1943 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', | 1951 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', |
1944 'dependencies': [ | 1952 'dependencies': [ |
1945 'browser', | 1953 'browser', |
1946 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 1954 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
(...skipping 1621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3568 ] | 3576 ] |
3569 }], # 'coverage!=0' | 3577 }], # 'coverage!=0' |
3570 ], # 'conditions' | 3578 ], # 'conditions' |
3571 } | 3579 } |
3572 | 3580 |
3573 # Local Variables: | 3581 # Local Variables: |
3574 # tab-width:2 | 3582 # tab-width:2 |
3575 # indent-tabs-mode:nil | 3583 # indent-tabs-mode:nil |
3576 # End: | 3584 # End: |
3577 # vim: set expandtab tabstop=2 shiftwidth=2: | 3585 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |