| 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 2022 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2033 ], | 2033 ], |
| 2034 }, | 2034 }, |
| 2035 { | 2035 { |
| 2036 'target_name': 'net_watcher', | 2036 'target_name': 'net_watcher', |
| 2037 'type': 'executable', | 2037 'type': 'executable', |
| 2038 'dependencies': [ | 2038 'dependencies': [ |
| 2039 '../base/base.gyp:base', | 2039 '../base/base.gyp:base', |
| 2040 'net', | 2040 'net', |
| 2041 'net_with_v8', | 2041 'net_with_v8', |
| 2042 ], | 2042 ], |
| 2043 'conditions': [ |
| 2044 [ 'use_glib == 1', { |
| 2045 'dependencies': [ |
| 2046 '../build/linux/system.gyp:gconf', |
| 2047 '../build/linux/system.gyp:gio', |
| 2048 ], |
| 2049 }, |
| 2050 ], |
| 2051 ], |
| 2043 'sources': [ | 2052 'sources': [ |
| 2044 'tools/net_watcher/net_watcher.cc', | 2053 'tools/net_watcher/net_watcher.cc', |
| 2045 ], | 2054 ], |
| 2046 }, | 2055 }, |
| 2047 { | 2056 { |
| 2048 'target_name': 'run_testserver', | 2057 'target_name': 'run_testserver', |
| 2049 'type': 'executable', | 2058 'type': 'executable', |
| 2050 'dependencies': [ | 2059 'dependencies': [ |
| 2051 '../base/base.gyp:base', | 2060 '../base/base.gyp:base', |
| 2052 '../build/temp_gyp/googleurl.gyp:googleurl', | 2061 '../build/temp_gyp/googleurl.gyp:googleurl', |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2360 '--result', '<@(_outputs)', | 2369 '--result', '<@(_outputs)', |
| 2361 '--isolate', 'net_unittests.isolate', | 2370 '--isolate', 'net_unittests.isolate', |
| 2362 ], | 2371 ], |
| 2363 }, | 2372 }, |
| 2364 ], | 2373 ], |
| 2365 }, | 2374 }, |
| 2366 ], | 2375 ], |
| 2367 }], | 2376 }], |
| 2368 ], | 2377 ], |
| 2369 } | 2378 } |
| OLD | NEW |