OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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': [ |
(...skipping 1943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1954 }, | 1954 }, |
1955 { | 1955 { |
1956 'target_name': 'get_server_time', | 1956 'target_name': 'get_server_time', |
1957 'type': 'executable', | 1957 'type': 'executable', |
1958 'dependencies': [ | 1958 'dependencies': [ |
1959 '../base/base.gyp:base', | 1959 '../base/base.gyp:base', |
1960 '../base/base.gyp:base_i18n', | 1960 '../base/base.gyp:base_i18n', |
1961 '../build/temp_gyp/googleurl.gyp:googleurl', | 1961 '../build/temp_gyp/googleurl.gyp:googleurl', |
1962 'net', | 1962 'net', |
1963 ], | 1963 ], |
| 1964 'conditions': [ |
| 1965 [ 'use_glib == 1', { |
| 1966 'dependencies': [ |
| 1967 '../build/linux/system.gyp:gconf', |
| 1968 '../build/linux/system.gyp:gio', |
| 1969 ], |
| 1970 }, |
| 1971 ], |
| 1972 ], |
1964 'sources': [ | 1973 'sources': [ |
1965 'tools/get_server_time/get_server_time.cc', | 1974 'tools/get_server_time/get_server_time.cc', |
1966 ], | 1975 ], |
1967 }, | 1976 }, |
1968 { | 1977 { |
1969 'target_name': 'net_watcher', | 1978 'target_name': 'net_watcher', |
1970 'type': 'executable', | 1979 'type': 'executable', |
1971 'dependencies': [ | 1980 'dependencies': [ |
1972 '../base/base.gyp:base', | 1981 '../base/base.gyp:base', |
1973 'net', | 1982 'net', |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2293 '--result', '<@(_outputs)', | 2302 '--result', '<@(_outputs)', |
2294 '--isolate', 'net_unittests.isolate', | 2303 '--isolate', 'net_unittests.isolate', |
2295 ], | 2304 ], |
2296 }, | 2305 }, |
2297 ], | 2306 ], |
2298 }, | 2307 }, |
2299 ], | 2308 ], |
2300 }], | 2309 }], |
2301 ], | 2310 ], |
2302 } | 2311 } |
OLD | NEW |