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 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1935 }, | 1935 }, |
1936 { | 1936 { |
1937 'target_name': 'get_server_time', | 1937 'target_name': 'get_server_time', |
1938 'type': 'executable', | 1938 'type': 'executable', |
1939 'dependencies': [ | 1939 'dependencies': [ |
1940 '../base/base.gyp:base', | 1940 '../base/base.gyp:base', |
1941 '../base/base.gyp:base_i18n', | 1941 '../base/base.gyp:base_i18n', |
1942 '../build/temp_gyp/googleurl.gyp:googleurl', | 1942 '../build/temp_gyp/googleurl.gyp:googleurl', |
1943 'net', | 1943 'net', |
1944 ], | 1944 ], |
| 1945 'conditions': [ |
| 1946 [ 'use_glib == 1', { |
| 1947 'dependencies': [ |
| 1948 '../build/linux/system.gyp:gconf', |
| 1949 '../build/linux/system.gyp:gio', |
| 1950 ], |
| 1951 }, |
| 1952 ], |
| 1953 ], |
1945 'sources': [ | 1954 'sources': [ |
1946 'tools/get_server_time/get_server_time.cc', | 1955 'tools/get_server_time/get_server_time.cc', |
1947 ], | 1956 ], |
1948 }, | 1957 }, |
1949 { | 1958 { |
1950 'target_name': 'net_watcher', | 1959 'target_name': 'net_watcher', |
1951 'type': 'executable', | 1960 'type': 'executable', |
1952 'dependencies': [ | 1961 'dependencies': [ |
1953 '../base/base.gyp:base', | 1962 '../base/base.gyp:base', |
1954 'net', | 1963 'net', |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2274 '--result', '<@(_outputs)', | 2283 '--result', '<@(_outputs)', |
2275 '--isolate', 'net_unittests.isolate', | 2284 '--isolate', 'net_unittests.isolate', |
2276 ], | 2285 ], |
2277 }, | 2286 }, |
2278 ], | 2287 ], |
2279 }, | 2288 }, |
2280 ], | 2289 ], |
2281 }], | 2290 }], |
2282 ], | 2291 ], |
2283 } | 2292 } |
OLD | NEW |