| 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 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2058 ], | 2058 ], |
| 2059 }, | 2059 }, |
| 2060 { | 2060 { |
| 2061 'target_name': 'net_watcher', | 2061 'target_name': 'net_watcher', |
| 2062 'type': 'executable', | 2062 'type': 'executable', |
| 2063 'dependencies': [ | 2063 'dependencies': [ |
| 2064 '../base/base.gyp:base', | 2064 '../base/base.gyp:base', |
| 2065 'net', | 2065 'net', |
| 2066 'net_with_v8', | 2066 'net_with_v8', |
| 2067 ], | 2067 ], |
| 2068 'conditions': [ |
| 2069 [ 'use_glib == 1', { |
| 2070 'dependencies': [ |
| 2071 '../build/linux/system.gyp:gconf', |
| 2072 '../build/linux/system.gyp:gio', |
| 2073 ], |
| 2074 }, |
| 2075 ], |
| 2076 ], |
| 2068 'sources': [ | 2077 'sources': [ |
| 2069 'tools/net_watcher/net_watcher.cc', | 2078 'tools/net_watcher/net_watcher.cc', |
| 2070 ], | 2079 ], |
| 2071 }, | 2080 }, |
| 2072 { | 2081 { |
| 2073 'target_name': 'run_testserver', | 2082 'target_name': 'run_testserver', |
| 2074 'type': 'executable', | 2083 'type': 'executable', |
| 2075 'dependencies': [ | 2084 'dependencies': [ |
| 2076 '../base/base.gyp:base', | 2085 '../base/base.gyp:base', |
| 2077 '../build/temp_gyp/googleurl.gyp:googleurl', | 2086 '../build/temp_gyp/googleurl.gyp:googleurl', |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2385 '--result', '<@(_outputs)', | 2394 '--result', '<@(_outputs)', |
| 2386 '--isolate', 'net_unittests.isolate', | 2395 '--isolate', 'net_unittests.isolate', |
| 2387 ], | 2396 ], |
| 2388 }, | 2397 }, |
| 2389 ], | 2398 ], |
| 2390 }, | 2399 }, |
| 2391 ], | 2400 ], |
| 2392 }], | 2401 }], |
| 2393 ], | 2402 ], |
| 2394 } | 2403 } |
| OLD | NEW |