OLD | NEW |
---|---|
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 'linux_link_kerberos%': 0, | 9 'linux_link_kerberos%': 0, |
10 'conditions': [ | 10 'conditions': [ |
11 ['chromeos==1 or OS=="android" or OS=="ios"', { | 11 ['chromeos==1 or OS=="android" or OS=="ios"', { |
(...skipping 1883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1895 'url_request/test_url_fetcher_factory.h', | 1895 'url_request/test_url_fetcher_factory.h', |
1896 'url_request/url_request_test_util.cc', | 1896 'url_request/url_request_test_util.cc', |
1897 'url_request/url_request_test_util.h', | 1897 'url_request/url_request_test_util.h', |
1898 ], | 1898 ], |
1899 'conditions': [ | 1899 'conditions': [ |
1900 ['inside_chromium_build==1 and OS != "ios"', { | 1900 ['inside_chromium_build==1 and OS != "ios"', { |
1901 'dependencies': [ | 1901 'dependencies': [ |
1902 # The test server uses Python modules generated by cloud print. | 1902 # The test server uses Python modules generated by cloud print. |
1903 # TODO(sync): Remove this hack (http://crbug.com/119403). | 1903 # TODO(sync): Remove this hack (http://crbug.com/119403). |
1904 '../chrome/app/policy/cloud_policy_codegen.gyp:cloud_policy_proto_co mpile', | 1904 '../chrome/app/policy/cloud_policy_codegen.gyp:cloud_policy_proto_co mpile', |
1905 # The test server uses Python modules generated by the sync protos. | |
1906 # TODO(sync): Remove this hack (http://crbug.com/117559). | |
1907 '../sync/protocol/sync_proto.gyp:sync_proto', | |
akalin
2013/01/07 20:14:51
i'm pretty sure this is still needed, unless somet
Raghu Simha
2013/01/08 11:27:48
You're right that this used to be the case. Howeve
Ryan Sleevi
2013/01/08 19:16:12
At the risk of piling on, I would prefer you fix t
Raghu Simha
2013/01/22 09:25:41
With http://crrev.com/177864, the above comment ca
| |
1908 '../third_party/protobuf/protobuf.gyp:py_proto', | 1905 '../third_party/protobuf/protobuf.gyp:py_proto', |
1909 ], | 1906 ], |
1910 }], | 1907 }], |
1911 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 1908 ['os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
1912 'conditions': [ | 1909 'conditions': [ |
1913 ['use_openssl==1', { | 1910 ['use_openssl==1', { |
1914 'dependencies': [ | 1911 'dependencies': [ |
1915 '../third_party/openssl/openssl.gyp:openssl', | 1912 '../third_party/openssl/openssl.gyp:openssl', |
1916 ], | 1913 ], |
1917 }, { | 1914 }, { |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2398 '--result', '<@(_outputs)', | 2395 '--result', '<@(_outputs)', |
2399 '--isolate', 'net_unittests.isolate', | 2396 '--isolate', 'net_unittests.isolate', |
2400 ], | 2397 ], |
2401 }, | 2398 }, |
2402 ], | 2399 ], |
2403 }, | 2400 }, |
2404 ], | 2401 ], |
2405 }], | 2402 }], |
2406 ], | 2403 ], |
2407 } | 2404 } |
OLD | NEW |