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

Unified Diff: components/policy.gypi

Issue 23045003: Moved chrome/common/policy to components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months 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 | « components/components_tests.gypi ('k') | components/policy/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/policy.gypi
diff --git a/components/policy.gypi b/components/policy.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..a9c0eec74f4520b38314d72d72e7df89faff953d
--- /dev/null
+++ b/components/policy.gypi
@@ -0,0 +1,32 @@
+# Copyright (c) 2013 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'policy_component',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'json_schema',
+ ],
+ 'defines': [
+ 'POLICY_COMPONENT_IMPLEMENTATION',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ # The target 'policy_component' always exists. For now it may be empty,
+ # but later it will include some stubs when configuration_policy==0.
Mattias Nissler (ping if slow) 2013/08/13 12:32:09 This comment may bitrot. So remove it or, if you w
Joao da Silva 2013/08/13 12:50:18 Done.
+ 'conditions': [
+ ['configuration_policy==1', {
+ 'sources': [
+ 'policy/core/common/policy_schema.cc',
Jói 2013/08/13 12:26:43 Maybe list policy_export.h for completeness.
Mattias Nissler (ping if slow) 2013/08/13 12:32:09 What's the plan with this 'core' directory? Can yo
Joao da Silva 2013/08/13 12:50:18 Good catch, that was a lapse from my side. Done.
Joao da Silva 2013/08/13 12:50:18 http://dev.chromium.org/developers/design-document
Mattias Nissler (ping if slow) 2013/08/13 13:14:38 I see. Note that these references suggest you come
+ 'policy/core/common/policy_schema.h',
+ ],
+ } ],
Mattias Nissler (ping if slow) 2013/08/13 12:32:09 nit }], seems to be more common in gyp files
Joao da Silva 2013/08/13 12:50:18 Done.
+ ],
+ },
+ ],
+}
« no previous file with comments | « components/components_tests.gypi ('k') | components/policy/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698