| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../../build/win_precompile.gypi', | 9 '../../build/win_precompile.gypi', |
| 10 '../../chrome/version.gypi', | 10 '../../chrome/version.gypi', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 ], | 33 ], |
| 34 'includes': [ | 34 'includes': [ |
| 35 '../../chrome/version_resource_rules.gypi', | 35 '../../chrome/version_resource_rules.gypi', |
| 36 ], | 36 ], |
| 37 }, | 37 }, |
| 38 { | 38 { |
| 39 'target_name': 'delegate_execute', | 39 'target_name': 'delegate_execute', |
| 40 'type': 'executable', | 40 'type': 'executable', |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 '../../base/base.gyp:base', | 42 '../../base/base.gyp:base', |
| 43 '../../breakpad/breakpad.gyp:breakpad_handler', |
| 43 '../../chrome/chrome.gyp:installer_util', | 44 '../../chrome/chrome.gyp:installer_util', |
| 44 '../../google_update/google_update.gyp:google_update', | 45 '../../google_update/google_update.gyp:google_update', |
| 45 '../../ui/ui.gyp:ui', | 46 '../../ui/ui.gyp:ui', |
| 46 '../../win8/win8.gyp:check_sdk_patch', | 47 '../../win8/win8.gyp:check_sdk_patch', |
| 47 'delegate_execute_version_resources', | 48 'delegate_execute_version_resources', |
| 48 ], | 49 ], |
| 49 'sources': [ | 50 'sources': [ |
| 50 'chrome_util.cc', | 51 'chrome_util.cc', |
| 51 'chrome_util.h', | 52 'chrome_util.h', |
| 52 'command_execute_impl.cc', | 53 'command_execute_impl.cc', |
| 53 'command_execute_impl.h', | 54 'command_execute_impl.h', |
| 54 'command_execute_impl.rgs', | 55 'command_execute_impl.rgs', |
| 56 'crash_server_init.cc', |
| 57 'crash_server_init.h', |
| 55 'delegate_execute.cc', | 58 'delegate_execute.cc', |
| 56 'delegate_execute.rc', | 59 'delegate_execute.rc', |
| 57 'delegate_execute.rgs', | 60 'delegate_execute.rgs', |
| 58 'delegate_execute_operation.cc', | 61 'delegate_execute_operation.cc', |
| 59 'delegate_execute_operation.h', | 62 'delegate_execute_operation.h', |
| 60 'delegate_execute_util.cc', | 63 'delegate_execute_util.cc', |
| 61 'delegate_execute_util.h', | 64 'delegate_execute_util.h', |
| 62 'resource.h', | 65 'resource.h', |
| 63 '<(SHARED_INTERMEDIATE_DIR)/delegate_execute/delegate_execute_exe_versio
n.rc', | 66 '<(SHARED_INTERMEDIATE_DIR)/delegate_execute/delegate_execute_exe_versio
n.rc', |
| 64 ], | 67 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 77 '../../testing/gtest.gyp:gtest', | 80 '../../testing/gtest.gyp:gtest', |
| 78 ], | 81 ], |
| 79 'sources': [ | 82 'sources': [ |
| 80 'delegate_execute_util.cc', | 83 'delegate_execute_util.cc', |
| 81 'delegate_execute_util.h', | 84 'delegate_execute_util.h', |
| 82 'delegate_execute_util_unittest.cc', | 85 'delegate_execute_util_unittest.cc', |
| 83 ], | 86 ], |
| 84 }, | 87 }, |
| 85 ], | 88 ], |
| 86 } | 89 } |
| OLD | NEW |