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

Side by Side Diff: components/content_settings.gypi

Issue 798923003: Make chrome/renderer/content_settings_observer.cc depend on //components/contents_settings for IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix fuzzer compilation Created 5 years, 8 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
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/content_settings/core/browser 8 # GN version: //components/content_settings/core/browser
9 'target_name': 'content_settings_core_browser', 9 'target_name': 'content_settings_core_browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ], 95 ],
96 'include_dirs': [ 96 'include_dirs': [
97 '..', 97 '..',
98 ], 98 ],
99 'sources': [ 99 'sources': [
100 # Note: sources list duplicated in GN build. 100 # Note: sources list duplicated in GN build.
101 'content_settings/core/test/content_settings_test_utils.cc', 101 'content_settings/core/test/content_settings_test_utils.cc',
102 'content_settings/core/test/content_settings_test_utils.h', 102 'content_settings/core/test/content_settings_test_utils.h',
103 ], 103 ],
104 }, 104 },
105 {
106 # GN version: //components/content_settings/content/common
107 'target_name': 'content_settings_content_common',
108 'type': 'static_library',
109 'dependencies': [
110 'content_settings_core_common',
111 '../base/base.gyp:base',
112 '../content/content.gyp:content_common',
113 '../ipc/ipc.gyp:ipc',
114 '../url/url.gyp:url_lib',
115 ],
116 'include_dirs': [
117 '..',
118 ],
119 'sources': [
120 # Note: sources list duplicated in GN build.
121 'content_settings/content/common/content_settings_message_generator.cc',
122 'content_settings/content/common/content_settings_message_generator.h',
123 'content_settings/content/common/content_settings_messages.h',
124 ],
125 },
105 ], 126 ],
106 } 127 }
OLDNEW
« no previous file with comments | « chrome/renderer/worker_content_settings_client_proxy.cc ('k') | components/content_settings/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698