| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'content_utility', | 8 'target_name': 'content_utility', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 'content_common', | 11 'content_common', |
| 12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
| 13 ], | 13 ], |
| 14 'sources': [ | 14 'sources': [ |
| 15 'utility/content_utility_client.cc', | |
| 16 'utility/content_utility_client.h', | 15 'utility/content_utility_client.h', |
| 17 'utility/utility_main.cc', | 16 'utility/utility_main.cc', |
| 18 'utility/utility_thread.cc', | 17 'utility/utility_thread.cc', |
| 19 'utility/utility_thread.h', | 18 'utility/utility_thread.h', |
| 20 ], | 19 ], |
| 21 'include_dirs': [ | 20 'include_dirs': [ |
| 22 '..', | 21 '..', |
| 23 ], | 22 ], |
| 24 'conditions': [ | 23 'conditions': [ |
| 25 ['OS=="mac"', { | 24 ['OS=="mac"', { |
| 26 'link_settings': { | 25 'link_settings': { |
| 27 'mac_bundle_resources': [ | 26 'mac_bundle_resources': [ |
| 28 'utility/utility.sb', | 27 'utility/utility.sb', |
| 29 ], | 28 ], |
| 30 }, | 29 }, |
| 31 }], | 30 }], |
| 32 ], | 31 ], |
| 33 }, | 32 }, |
| 34 ], | 33 ], |
| 35 } | 34 } |
| OLD | NEW |