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

Side by Side Diff: chrome/chrome_common.gypi

Issue 1818423003: Revert of Remove configuration policy from chrome build files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@policy_chrome_defines
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 'common/all_messages.h', 9 'common/all_messages.h',
10 'common/attrition_experiments.h', 10 'common/attrition_experiments.h',
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 '<(DEPTH)/components/components.gyp:content_settings_core_common', 325 '<(DEPTH)/components/components.gyp:content_settings_core_common',
326 '<(DEPTH)/components/components.gyp:crash_core_common', 326 '<(DEPTH)/components/components.gyp:crash_core_common',
327 '<(DEPTH)/components/components.gyp:error_page_common', 327 '<(DEPTH)/components/components.gyp:error_page_common',
328 '<(DEPTH)/components/components.gyp:favicon_base', 328 '<(DEPTH)/components/components.gyp:favicon_base',
329 '<(DEPTH)/components/components.gyp:flags_ui_switches', 329 '<(DEPTH)/components/components.gyp:flags_ui_switches',
330 '<(DEPTH)/components/components.gyp:gcm_driver_common', 330 '<(DEPTH)/components/components.gyp:gcm_driver_common',
331 '<(DEPTH)/components/components.gyp:json_schema', 331 '<(DEPTH)/components/components.gyp:json_schema',
332 '<(DEPTH)/components/components.gyp:metrics', 332 '<(DEPTH)/components/components.gyp:metrics',
333 '<(DEPTH)/components/components.gyp:metrics_net', 333 '<(DEPTH)/components/components.gyp:metrics_net',
334 '<(DEPTH)/components/components.gyp:omnibox_common', 334 '<(DEPTH)/components/components.gyp:omnibox_common',
335 '<(DEPTH)/components/components.gyp:policy',
336 '<(DEPTH)/components/components.gyp:policy_component_common', 335 '<(DEPTH)/components/components.gyp:policy_component_common',
337 # TODO(fdoray): Remove this once the PreRead field trial has expired. 336 # TODO(fdoray): Remove this once the PreRead field trial has expired.
338 # crbug.com/577698 337 # crbug.com/577698
339 '<(DEPTH)/components/components.gyp:startup_metric_utils_common', 338 '<(DEPTH)/components/components.gyp:startup_metric_utils_common',
340 '<(DEPTH)/components/components.gyp:translate_core_common', 339 '<(DEPTH)/components/components.gyp:translate_core_common',
341 '<(DEPTH)/components/components.gyp:variations', 340 '<(DEPTH)/components/components.gyp:variations',
342 '<(DEPTH)/components/components.gyp:version_info', 341 '<(DEPTH)/components/components.gyp:version_info',
343 '<(DEPTH)/components/components_strings.gyp:components_strings', 342 '<(DEPTH)/components/components_strings.gyp:components_strings',
344 '<(DEPTH)/components/prefs/prefs.gyp:prefs', 343 '<(DEPTH)/components/prefs/prefs.gyp:prefs',
345 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter', 344 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter',
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 ], 509 ],
511 'sources!': [ 510 'sources!': [
512 'common/channel_info_posix.cc', 511 'common/channel_info_posix.cc',
513 ], 512 ],
514 }], 513 }],
515 ['enable_webrtc==0', { 514 ['enable_webrtc==0', {
516 'sources!': [ 515 'sources!': [
517 'common/media/webrtc_logging_messages.h', 516 'common/media/webrtc_logging_messages.h',
518 ] 517 ]
519 }], 518 }],
519 ['configuration_policy==1', {
520 'dependencies': [
521 '<(DEPTH)/components/components.gyp:policy',
522 ],
523 }],
520 ['safe_browsing==1', { 524 ['safe_browsing==1', {
521 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ], 525 'sources': [ '<@(chrome_common_full_safe_browsing_sources)', ],
522 }], 526 }],
523 ], 527 ],
524 'target_conditions': [ 528 'target_conditions': [
525 ['OS == "ios"', { 529 ['OS == "ios"', {
526 'sources/': [ 530 'sources/': [
527 # Pull in specific Mac files for iOS (which have been filtered out 531 # Pull in specific Mac files for iOS (which have been filtered out
528 # by file name rules). 532 # by file name rules).
529 ['include', '^common/chrome_version_info_mac\\.mm$'], 533 ['include', '^common/chrome_version_info_mac\\.mm$'],
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 ], 635 ],
632 'sources': [ 636 'sources': [
633 'common/resource_usage_reporter.mojom', 637 'common/resource_usage_reporter.mojom',
634 ], 638 ],
635 'dependencies': [ 639 'dependencies': [
636 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 640 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
637 ], 641 ],
638 }, 642 },
639 ], 643 ],
640 } 644 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698