Chromium Code Reviews| 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 28 matching lines...) Expand all Loading... | |
| 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 '../../chrome/chrome.gyp:installer_util', | 43 '../../chrome/chrome.gyp:installer_util', |
| 44 '../../google_update/google_update.gyp:google_update', | 44 '../../google_update/google_update.gyp:google_update', |
| 45 '../../ui/ui.gyp:ui', | 45 '../../ui/ui.gyp:ui', |
| 46 '../../win8/win8.gyp:check_sdk_patch', | 46 '../../win8/win8.gyp:check_sdk_patch', |
| 47 'delegate_execute_version_resources', | 47 'delegate_execute_version_resources', |
| 48 ], | 48 ], |
| 49 'include_dirs': [ | |
|
grt (UTC plus 2)
2012/11/21 19:27:50
remove this and instead add a dependency to ../../
robertshield
2012/11/21 21:09:15
Done.
| |
| 50 '../../breakpad/src', | |
| 51 ], | |
| 49 'sources': [ | 52 'sources': [ |
| 50 'chrome_util.cc', | 53 'chrome_util.cc', |
| 51 'chrome_util.h', | 54 'chrome_util.h', |
| 55 'crash_server_init.cc', | |
|
grt (UTC plus 2)
2012/11/21 19:27:50
sort
robertshield
2012/11/21 21:09:15
huh, you'd think after hours of http://www.youtube
| |
| 56 'crash_server_init.h', | |
| 52 'command_execute_impl.cc', | 57 'command_execute_impl.cc', |
| 53 'command_execute_impl.h', | 58 'command_execute_impl.h', |
| 54 'command_execute_impl.rgs', | 59 'command_execute_impl.rgs', |
| 55 'delegate_execute.cc', | 60 'delegate_execute.cc', |
| 56 'delegate_execute.rc', | 61 'delegate_execute.rc', |
| 57 'delegate_execute.rgs', | 62 'delegate_execute.rgs', |
| 58 'delegate_execute_operation.cc', | 63 'delegate_execute_operation.cc', |
| 59 'delegate_execute_operation.h', | 64 'delegate_execute_operation.h', |
| 60 'delegate_execute_util.cc', | 65 'delegate_execute_util.cc', |
| 61 'delegate_execute_util.h', | 66 'delegate_execute_util.h', |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 77 '../../testing/gtest.gyp:gtest', | 82 '../../testing/gtest.gyp:gtest', |
| 78 ], | 83 ], |
| 79 'sources': [ | 84 'sources': [ |
| 80 'delegate_execute_util.cc', | 85 'delegate_execute_util.cc', |
| 81 'delegate_execute_util.h', | 86 'delegate_execute_util.h', |
| 82 'delegate_execute_util_unittest.cc', | 87 'delegate_execute_util_unittest.cc', |
| 83 ], | 88 ], |
| 84 }, | 89 }, |
| 85 ], | 90 ], |
| 86 } | 91 } |
| OLD | NEW |