BUILD.gn 525 B

12345678910111213141516171819
  1. # Copyright 2017 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. component("common") {
  5. output_name = "network_session_configurator"
  6. sources = [
  7. "network_features.cc",
  8. "network_features.h",
  9. "network_session_configurator_export.h",
  10. "network_switch_list.h",
  11. "network_switches.cc",
  12. "network_switches.h",
  13. ]
  14. public_deps = [ "//base" ]
  15. defines = [ "NETWORK_SESSION_CONFIGURATOR_IMPLEMENTATION" ]
  16. }