Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(589)

Side by Side Diff: remoting/remoting.gyp

Issue 146623004: Avoid rebuilding remoting host every time gyp runs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 # Each CLSID is a hash of the corresponding interface ID and the
64 # current version string to make sure that the newly installed COM
Jamie 2014/02/05 18:53:58 How will this impact dev builds on a machine? I've
Sergey Ulanov 2014/02/05 19:47:16 I think potentially the IDs can be generated rando
63 # classes will be used during/after upgrade even if there are old 65 # classes will be used during/after upgrade even if there are old
64 # instances running already. 66 # instances running already.
65 # The parameter at the end is ignored, but needed to make sure that the 67 # The IDs are not random to avoid rebuilding host when it's not
66 # script will be invoked separately for each CLSID. Otherwise GYP will 68 # necessary.
67 # reuse the value returned by the first invocation of the script.
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)\')")',
Jamie 2014/02/05 18:53:58 I was originally concerned about duplicating these
Sergey Ulanov 2014/02/05 19:47:16 Correct. I've updated the comments to make it clea
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698