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

Unified Diff: chrome/common/variations/BUILD.gn

Issue 2465953002: Move Field Trial Utils from chrome/common/variations to components/variations/field_trial_util (Closed)
Patch Set: Moved to components/variations/field_trial_util and chrome switches Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/common/variations/fieldtrial_testing_config_schema.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/variations/BUILD.gn
diff --git a/chrome/common/variations/BUILD.gn b/chrome/common/variations/BUILD.gn
deleted file mode 100644
index 517865b0a63abd4ba9ea7fc0afbaa2e0530cd2cb..0000000000000000000000000000000000000000
--- a/chrome/common/variations/BUILD.gn
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-action("fieldtrial_testing_config_action") {
- visibility = [ ":fieldtrial_testing_config" ]
- script = "//tools/variations/fieldtrial_to_struct.py"
-
- source = "//testing/variations/fieldtrial_testing_config.json"
- inputs = [
- "//tools/json_to_struct/element_generator.py",
- "//tools/json_to_struct/json_to_struct.py",
- "//tools/json_to_struct/struct_generator.py",
- source,
- ]
- out_name = "fieldtrial_testing_config"
- outputs = [
- "$target_gen_dir/$out_name.cc",
- "$target_gen_dir/$out_name.h",
- ]
-
- args = [
- rebase_path(source, root_build_dir),
- "--destbase=" + rebase_path(target_gen_dir, root_build_dir),
- "--namespace=chrome_variations",
- "--schema=" +
- rebase_path("fieldtrial_testing_config_schema.json", root_build_dir),
- "--platform=" + current_os,
- "--output=$out_name",
- ]
-}
-
-source_set("fieldtrial_testing_config") {
- sources = get_target_outputs(":fieldtrial_testing_config_action")
- deps = [
- ":fieldtrial_testing_config_action",
- ]
-}
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/common/variations/fieldtrial_testing_config_schema.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698