| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
| 10 'run_jscompile%': 0, | 10 'run_jscompile%': 0, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 'host_plugin_extension': 'arm.so', | 52 'host_plugin_extension': 'arm.so', |
| 53 'host_plugin_prefix': 'lib', | 53 'host_plugin_prefix': 'lib', |
| 54 }], | 54 }], |
| 55 ['os_posix == 1 and OS != "mac" and target_arch == "mipsel"', { | 55 ['os_posix == 1 and OS != "mac" and target_arch == "mipsel"', { |
| 56 'host_plugin_extension': 'mipsel.so', | 56 'host_plugin_extension': 'mipsel.so', |
| 57 'host_plugin_prefix': 'lib', | 57 'host_plugin_prefix': 'lib', |
| 58 }], | 58 }], |
| 59 ['OS=="win"', { | 59 ['OS=="win"', { |
| 60 'host_plugin_extension': 'dll', | 60 'host_plugin_extension': 'dll', |
| 61 'host_plugin_prefix': '', | 61 'host_plugin_prefix': '', |
| 62 # Use auto-generated CLSIDs to make sure that the newly installed COM | 62 |
| 63 # classes will be used during/after upgrade even if there are old | 63 # Each CLSID is a hash of the current version string salted with an |
| 64 # instances running already. | 64 # arbitrary GUID. This ensures that the newly installed COM classes will |
| 65 # The parameter at the end is ignored, but needed to make sure that the | 65 # be used during/after upgrade even if there are old instances running |
| 66 # script will be invoked separately for each CLSID. Otherwise GYP will | 66 # already. |
| 67 # reuse the value returned by the first invocation of the script. | 67 # The IDs are not random to avoid rebuilding host when it's not |
| 68 # necessary. |
| 68 'daemon_controller_clsid': | 69 'daemon_controller_clsid': |
| 69 '<!(python -c "import uuid; print uuid.uuid4()" 1)', | 70 '<!(python -c "import uuid; print uuid.uuid5(uuid.UUID(\'655bd819-c0
8c-4b04-80c2-f160739ff6ef\'), \'<(version_full)\')")', |
| 70 'rdp_desktop_session_clsid': | 71 'rdp_desktop_session_clsid': |
| 71 '<!(python -c "import uuid; print uuid.uuid4()" 2)', | 72 '<!(python -c "import uuid; print uuid.uuid5(uuid.UUID(\'6a7699f0-ee
43-43e7-aa30-a6738f9bd470\'), \'<(version_full)\')")', |
| 72 }], | 73 }], |
| 73 ], | 74 ], |
| 74 'remoting_locales': [ | 75 'remoting_locales': [ |
| 75 'ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en', 'en-GB', 'es', | 76 'ar', 'bg', 'ca', 'cs', 'da', 'de', 'el', 'en', 'en-GB', 'es', |
| 76 'es-419', 'et', 'fi', 'fil', 'fr', 'he', 'hi', 'hr', 'hu', 'id', | 77 'es-419', 'et', 'fi', 'fil', 'fr', 'he', 'hi', 'hr', 'hu', 'id', |
| 77 'it', 'ja', 'ko', 'lt', 'lv', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', | 78 'it', 'ja', 'ko', 'lt', 'lv', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', |
| 78 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'th', 'tr', 'uk', 'vi', | 79 'ro', 'ru', 'sk', 'sl', 'sr', 'sv', 'th', 'tr', 'uk', 'vi', |
| 79 'zh-CN', 'zh-TW', | 80 'zh-CN', 'zh-TW', |
| 80 ], | 81 ], |
| 81 'remoting_locale_files': [ | 82 'remoting_locale_files': [ |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 'protocol/v2_authenticator.h', | 628 'protocol/v2_authenticator.h', |
| 628 'protocol/video_reader.cc', | 629 'protocol/video_reader.cc', |
| 629 'protocol/video_reader.h', | 630 'protocol/video_reader.h', |
| 630 'protocol/video_stub.h', | 631 'protocol/video_stub.h', |
| 631 'protocol/video_writer.cc', | 632 'protocol/video_writer.cc', |
| 632 'protocol/video_writer.h', | 633 'protocol/video_writer.h', |
| 633 ], | 634 ], |
| 634 }, # end of target 'remoting_protocol' | 635 }, # end of target 'remoting_protocol' |
| 635 ], # end of targets | 636 ], # end of targets |
| 636 } | 637 } |
| OLD | NEW |