OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//remoting/build/config/remoting_build.gni") |
| 6 |
| 7 # TODO(brettw) these should not be generated via exec_script. This should be |
| 8 # part of the build process rather than the metabuild. Instead, a script |
| 9 # should generate a header containing the #defines for this as well as the |
| 10 # IDL file with the values. |
| 11 clsids = exec_script("//remoting/host/win/get_clsids.py", |
| 12 [ |
| 13 daemon_controller_guid, |
| 14 rdp_desktop_session_guid, |
| 15 chrome_version_full, |
| 16 ], |
| 17 "value") |
| 18 daemon_controller_clsid = clsids[0] |
| 19 rdp_desktop_session_clsid = clsids[1] |
OLD | NEW |