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

Side by Side Diff: chrome/browser/chromeos/BUILD.gn

Issue 2321273003: Extend VariationParamsManager to support feature associations. (Closed)
Patch Set: Fixing windows build? Created 4 years 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
OLDNEW
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//extensions/features/features.gni") 7 import("//extensions/features/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 1616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 deps = [ 1627 deps = [
1628 ":attestation_proto", 1628 ":attestation_proto",
1629 ":device_policy_proto", 1629 ":device_policy_proto",
1630 "//ash/resources", 1630 "//ash/resources",
1631 "//components/drive", 1631 "//components/drive",
1632 "//components/drive:test_support_chromeos", 1632 "//components/drive:test_support_chromeos",
1633 "//components/invalidation/public", 1633 "//components/invalidation/public",
1634 "//components/policy:generated", 1634 "//components/policy:generated",
1635 "//components/resources", 1635 "//components/resources",
1636 "//components/sync", 1636 "//components/sync",
1637 "//components/variations:test_support",
1637 "//crypto:platform", 1638 "//crypto:platform",
1638 "//dbus", 1639 "//dbus",
1639 "//mojo/public/cpp/system:system", 1640 "//mojo/public/cpp/system:system",
1640 "//skia", 1641 "//skia",
1641 "//testing/gmock", 1642 "//testing/gmock",
1642 "//testing/gtest", 1643 "//testing/gtest",
1643 "//third_party/icu", 1644 "//third_party/icu",
1644 "//third_party/leveldatabase", 1645 "//third_party/leveldatabase",
1645 "//ui/chromeos/resources", 1646 "//ui/chromeos/resources",
1646 ] 1647 ]
1647 data = [ 1648 data = [
1648 "//chromeos/test/data/", 1649 "//chromeos/test/data/",
1649 ] 1650 ]
1650 } 1651 }
1651 1652
1652 proto_library("device_policy_proto") { 1653 proto_library("device_policy_proto") {
1653 sources = [ 1654 sources = [
1654 "policy/proto/chrome_device_policy.proto", 1655 "policy/proto/chrome_device_policy.proto",
1655 "policy/proto/install_attributes.proto", 1656 "policy/proto/install_attributes.proto",
1656 ] 1657 ]
1657 } 1658 }
1658 1659
1659 proto_library("attestation_proto") { 1660 proto_library("attestation_proto") {
1660 sources = [ 1661 sources = [
1661 "attestation/attestation_key_payload.proto", 1662 "attestation/attestation_key_payload.proto",
1662 ] 1663 ]
1663 } 1664 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698