| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'includes': [ | 6 'includes': [ |
| 7 '../../../../../build/common.gypi', | 7 '../../../../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'call_broker', | 11 'target_name': 'call_broker', |
| 12 'type': 'executable', | 12 'type': 'executable', |
| 13 'sources': [ | 13 'sources': [ |
| 14 'call_broker.cc', | 14 'call_broker.cc', |
| 15 'precompile.cc', | 15 'precompile.cc', |
| 16 'precompile.h', | 16 'precompile.h', |
| 17 ], | 17 ], |
| 18 'configurations': { | |
| 19 'Debug': { | |
| 20 'msvs_precompiled_header': 'precompile.h', | |
| 21 'msvs_precompiled_source': 'precompile.cc', | |
| 22 }, | |
| 23 }, | |
| 24 'defines': [ | 18 'defines': [ |
| 25 '_CONSOLE', | 19 '_CONSOLE', |
| 26 ], | 20 ], |
| 27 'dependencies': [ | 21 'dependencies': [ |
| 28 '<(DEPTH)/ceee/ie/plugin/toolband/toolband.gyp:toolband_idl', | 22 '<(DEPTH)/ceee/ie/plugin/toolband/toolband.gyp:toolband_idl', |
| 29 '<(DEPTH)/ceee/ie/common/common.gyp:ie_common', | 23 '<(DEPTH)/ceee/ie/common/common.gyp:ie_common', |
| 30 '<(DEPTH)/base/base.gyp:base', | 24 '<(DEPTH)/base/base.gyp:base', |
| 31 '<(DEPTH)/ceee/common/common.gyp:ceee_common', | 25 '<(DEPTH)/ceee/common/common.gyp:ceee_common', |
| 32 ], | 26 ], |
| 33 }, | 27 }, |
| 34 ] | 28 ] |
| 35 } | 29 } |
| OLD | NEW |