| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 'variables': { | 8 'variables': { |
| 9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 ], | 475 ], |
| 476 }], | 476 }], |
| 477 ], | 477 ], |
| 478 }, | 478 }, |
| 479 { | 479 { |
| 480 'target_name': 'utility', | 480 'target_name': 'utility', |
| 481 'type': 'static_library', | 481 'type': 'static_library', |
| 482 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7', | 482 'msvs_guid': '4D2B38E6-65FF-4F97-B88A-E441DF54EBF7', |
| 483 'dependencies': [ | 483 'dependencies': [ |
| 484 '../base/base.gyp:base', | 484 '../base/base.gyp:base', |
| 485 '../content/content.gyp:content_utility', |
| 485 '../skia/skia.gyp:skia', | 486 '../skia/skia.gyp:skia', |
| 486 ], | 487 ], |
| 487 'sources': [ | 488 'sources': [ |
| 488 'utility/utility_main.cc', | 489 'utility/chrome_content_utility_client.cc', |
| 489 'utility/utility_thread.cc', | 490 'utility/chrome_content_utility_client.h', |
| 490 'utility/utility_thread.h', | |
| 491 ], | 491 ], |
| 492 'include_dirs': [ | 492 'include_dirs': [ |
| 493 '..', | 493 '..', |
| 494 ], | 494 ], |
| 495 'conditions': [ | 495 'conditions': [ |
| 496 ['toolkit_uses_gtk == 1', { | 496 ['toolkit_uses_gtk == 1', { |
| 497 'dependencies': [ | 497 'dependencies': [ |
| 498 '../build/linux/system.gyp:gtk', | 498 '../build/linux/system.gyp:gtk', |
| 499 ], | 499 ], |
| 500 }], | 500 }], |
| (...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1668 }], # targets | 1668 }], # targets |
| 1669 }], # os_posix == 1 and OS != "mac" | 1669 }], # os_posix == 1 and OS != "mac" |
| 1670 ], # 'conditions' | 1670 ], # 'conditions' |
| 1671 } | 1671 } |
| 1672 | 1672 |
| 1673 # Local Variables: | 1673 # Local Variables: |
| 1674 # tab-width:2 | 1674 # tab-width:2 |
| 1675 # indent-tabs-mode:nil | 1675 # indent-tabs-mode:nil |
| 1676 # End: | 1676 # End: |
| 1677 # vim: set expandtab tabstop=2 shiftwidth=2: | 1677 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |