| 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 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2069 ], | 2069 ], |
| 2070 }, | 2070 }, |
| 2071 { | 2071 { |
| 2072 'target_name': 'net_watcher', | 2072 'target_name': 'net_watcher', |
| 2073 'type': 'executable', | 2073 'type': 'executable', |
| 2074 'dependencies': [ | 2074 'dependencies': [ |
| 2075 '../base/base.gyp:base', | 2075 '../base/base.gyp:base', |
| 2076 'net', | 2076 'net', |
| 2077 'net_with_v8', | 2077 'net_with_v8', |
| 2078 ], | 2078 ], |
| 2079 'conditions': [ |
| 2080 [ 'use_glib == 1', { |
| 2081 'dependencies': [ |
| 2082 '../build/linux/system.gyp:gconf', |
| 2083 '../build/linux/system.gyp:gio', |
| 2084 ], |
| 2085 }, |
| 2086 ], |
| 2087 ], |
| 2079 'sources': [ | 2088 'sources': [ |
| 2080 'tools/net_watcher/net_watcher.cc', | 2089 'tools/net_watcher/net_watcher.cc', |
| 2081 ], | 2090 ], |
| 2082 }, | 2091 }, |
| 2083 { | 2092 { |
| 2084 'target_name': 'run_testserver', | 2093 'target_name': 'run_testserver', |
| 2085 'type': 'executable', | 2094 'type': 'executable', |
| 2086 'dependencies': [ | 2095 'dependencies': [ |
| 2087 '../base/base.gyp:base', | 2096 '../base/base.gyp:base', |
| 2088 '../build/temp_gyp/googleurl.gyp:googleurl', | 2097 '../build/temp_gyp/googleurl.gyp:googleurl', |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2351 '--result', '<@(_outputs)', | 2360 '--result', '<@(_outputs)', |
| 2352 '--isolate', 'net_unittests.isolate', | 2361 '--isolate', 'net_unittests.isolate', |
| 2353 ], | 2362 ], |
| 2354 }, | 2363 }, |
| 2355 ], | 2364 ], |
| 2356 }, | 2365 }, |
| 2357 ], | 2366 ], |
| 2358 }], | 2367 }], |
| 2359 ], | 2368 ], |
| 2360 } | 2369 } |
| OLD | NEW |