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

Side by Side Diff: chrome/tools/build/generate_policy_source.py

Issue 109743002: Move policy code into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar fixes Created 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | components/components_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 '''python %prog [options] platform chromium_os_flag template 6 '''python %prog [options] platform chromium_os_flag template
7 7
8 platform specifies which platform source is being generated for 8 platform specifies which platform source is being generated for
9 and can be one of (win, mac, linux) 9 and can be one of (win, mac, linux)
10 chromium_os_flag should be 1 if this is a Chromium OS build 10 chromium_os_flag should be 1 if this is a Chromium OS build
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 #include <limits> 610 #include <limits>
611 #include <string> 611 #include <string>
612 612
613 #include "base/basictypes.h" 613 #include "base/basictypes.h"
614 #include "base/callback.h" 614 #include "base/callback.h"
615 #include "base/json/json_reader.h" 615 #include "base/json/json_reader.h"
616 #include "base/logging.h" 616 #include "base/logging.h"
617 #include "base/memory/scoped_ptr.h" 617 #include "base/memory/scoped_ptr.h"
618 #include "base/memory/weak_ptr.h" 618 #include "base/memory/weak_ptr.h"
619 #include "base/values.h" 619 #include "base/values.h"
620 #include "chrome/browser/policy/cloud/cloud_external_data_manager.h" 620 #include "components/policy/core/common/cloud/cloud_external_data_manager.h"
621 #include "components/policy/core/common/external_data_fetcher.h" 621 #include "components/policy/core/common/external_data_fetcher.h"
622 #include "components/policy/core/common/policy_map.h" 622 #include "components/policy/core/common/policy_map.h"
623 #include "policy/policy_constants.h" 623 #include "policy/policy_constants.h"
624 #include "policy/proto/cloud_policy.pb.h" 624 #include "policy/proto/cloud_policy.pb.h"
625 625
626 using google::protobuf::RepeatedPtrField; 626 using google::protobuf::RepeatedPtrField;
627 627
628 namespace policy { 628 namespace policy {
629 629
630 namespace em = enterprise_management; 630 namespace em = enterprise_management;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 def _WriteCloudPolicyDecoder(policies, os, f): 739 def _WriteCloudPolicyDecoder(policies, os, f):
740 f.write(CPP_HEAD) 740 f.write(CPP_HEAD)
741 for policy in policies: 741 for policy in policies:
742 if policy.is_supported and not policy.is_device_only: 742 if policy.is_supported and not policy.is_device_only:
743 _WritePolicyCode(f, policy) 743 _WritePolicyCode(f, policy)
744 f.write(CPP_FOOT) 744 f.write(CPP_FOOT)
745 745
746 746
747 if __name__ == '__main__': 747 if __name__ == '__main__':
748 sys.exit(main()) 748 sys.exit(main())
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698