| OLD | NEW | 
|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/allocator.gni") | 5 import("//build/config/allocator.gni") | 
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") | 
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") | 
| 8 import("//build/util/version.gni") | 8 import("//build/util/version.gni") | 
| 9 import("//remoting/remoting_host.gni") | 9 import("//remoting/remoting_host.gni") | 
| 10 import("//remoting/remoting_locales.gni") | 10 import("//remoting/remoting_locales.gni") | 
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 329       "//testing/gtest", | 329       "//testing/gtest", | 
| 330     ] | 330     ] | 
| 331 | 331 | 
| 332     if (enable_configuration_policy) { | 332     if (enable_configuration_policy) { | 
| 333       deps += [ "//components/policy:policy_component_test_support" ] | 333       deps += [ "//components/policy:policy_component_test_support" ] | 
| 334     } | 334     } | 
| 335   } | 335   } | 
| 336 | 336 | 
| 337   if (is_win) { | 337   if (is_win) { | 
| 338     import("//build/toolchain/win/midl.gni") | 338     import("//build/toolchain/win/midl.gni") | 
| 339     import("//remoting/tools/build/message_compiler.gni") | 339     import("//build/win/message_compiler.gni") | 
| 340 | 340 | 
| 341     # TODO(brettw) these should not be generated via exec_script. This should be | 341     # TODO(brettw) these should not be generated via exec_script. This should be | 
| 342     # part of the build process rather than the metabuild. Instead, a script | 342     # part of the build process rather than the metabuild. Instead, a script | 
| 343     # should generate a header containing the #defines for this as well as the | 343     # should generate a header containing the #defines for this as well as the | 
| 344     # IDL file with the values. | 344     # IDL file with the values. | 
| 345     clsids = exec_script("win/get_clsids.py", | 345     clsids = exec_script("win/get_clsids.py", | 
| 346                          [ | 346                          [ | 
| 347                            remoting_srcs_gypi_values.daemon_controller_guid, | 347                            remoting_srcs_gypi_values.daemon_controller_guid, | 
| 348                            remoting_srcs_gypi_values.rdp_desktop_session_guid, | 348                            remoting_srcs_gypi_values.rdp_desktop_session_guid, | 
| 349                            version_full, | 349                            version_full, | 
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 654           "//remoting/resources", | 654           "//remoting/resources", | 
| 655           "//third_party/icu:icudata", | 655           "//third_party/icu:icudata", | 
| 656         ] | 656         ] | 
| 657       } | 657       } | 
| 658     } else { | 658     } else { | 
| 659       group("remoting_me2me_host_archive") { | 659       group("remoting_me2me_host_archive") { | 
| 660       } | 660       } | 
| 661     } | 661     } | 
| 662   } | 662   } | 
| 663 } | 663 } | 
| OLD | NEW | 
|---|