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 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1945 ['exclude', '^../views/'], | 1945 ['exclude', '^../views/'], |
1946 ], | 1946 ], |
1947 }], | 1947 }], |
1948 ['use_openssl==1', { | 1948 ['use_openssl==1', { |
1949 'sources/': [ | 1949 'sources/': [ |
1950 # OpenSSL build does not support firefox importer. See | 1950 # OpenSSL build does not support firefox importer. See |
1951 # http://crbug.com/64926 | 1951 # http://crbug.com/64926 |
1952 ['exclude', '^browser/importer/'], | 1952 ['exclude', '^browser/importer/'], |
1953 ], | 1953 ], |
1954 }], | 1954 }], |
1955 # We are migrating to client-based geolocation. Once the migration | |
1956 # has finished, ENABLE_CLIENT_BASED_GEOLOCATION will disappear. | |
1957 # See bugs: | |
1958 # https://bugs.webkit.org/show_bug.cgi?id=45752 and | |
1959 # http://code.google.com/p/chromium/issues/detail?id=59907 | |
1960 ['"ENABLE_CLIENT_BASED_GEOLOCATION=1" in feature_defines', { | |
1961 'defines': [ 'ENABLE_CLIENT_BASED_GEOLOCATION=1' ] | |
1962 }], | |
1963 ], | 1955 ], |
1964 }, | 1956 }, |
1965 { | 1957 { |
1966 # Executable that runs each browser test in a new process. | 1958 # Executable that runs each browser test in a new process. |
1967 'target_name': 'browser_tests', | 1959 'target_name': 'browser_tests', |
1968 'type': 'executable', | 1960 'type': 'executable', |
1969 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', | 1961 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', |
1970 'dependencies': [ | 1962 'dependencies': [ |
1971 'browser', | 1963 'browser', |
1972 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', | 1964 'browser/sync/protocol/sync_proto.gyp:sync_proto_cpp', |
(...skipping 1656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3629 ] | 3621 ] |
3630 }], # 'coverage!=0' | 3622 }], # 'coverage!=0' |
3631 ], # 'conditions' | 3623 ], # 'conditions' |
3632 } | 3624 } |
3633 | 3625 |
3634 # Local Variables: | 3626 # Local Variables: |
3635 # tab-width:2 | 3627 # tab-width:2 |
3636 # indent-tabs-mode:nil | 3628 # indent-tabs-mode:nil |
3637 # End: | 3629 # End: |
3638 # vim: set expandtab tabstop=2 shiftwidth=2: | 3630 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |