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

Side by Side Diff: content/content_common.gypi

Issue 8336007: Move content_client.h into content/public. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../build/temp_gyp/googleurl.gyp:googleurl', 8 '../build/temp_gyp/googleurl.gyp:googleurl',
9 '../gpu/gpu.gyp:gpu_ipc', 9 '../gpu/gpu.gyp:gpu_ipc',
10 '../ipc/ipc.gyp:ipc', 10 '../ipc/ipc.gyp:ipc',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'common/chrome_descriptors.h', 60 'common/chrome_descriptors.h',
61 'common/cloud_print_class_mac.h', 61 'common/cloud_print_class_mac.h',
62 'common/cloud_print_class_mac.mm', 62 'common/cloud_print_class_mac.mm',
63 'common/clipboard_messages.h', 63 'common/clipboard_messages.h',
64 'common/common_param_traits.cc', 64 'common/common_param_traits.cc',
65 'common/common_param_traits.h', 65 'common/common_param_traits.h',
66 'common/content_message_generator.cc', 66 'common/content_message_generator.cc',
67 'common/content_message_generator.h', 67 'common/content_message_generator.h',
68 'common/content_notification_types.h', 68 'common/content_notification_types.h',
69 'common/content_export.h', 69 'common/content_export.h',
70 'common/content_client.cc',
71 'common/content_client.h',
72 'common/content_constants.cc', 70 'common/content_constants.cc',
73 'common/content_constants.h', 71 'common/content_constants.h',
74 'common/content_counters.cc', 72 'common/content_counters.cc',
75 'common/content_counters.h', 73 'common/content_counters.h',
76 'common/content_paths.cc', 74 'common/content_paths.cc',
77 'common/content_paths.h', 75 'common/content_paths.h',
78 'common/content_restriction.h', 76 'common/content_restriction.h',
79 'common/css_colors.h', 77 'common/css_colors.h',
80 'common/database_messages.h', 78 'common/database_messages.h',
81 'common/database_util.cc', 79 'common/database_util.cc',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'common/webblobregistry_impl.cc', 249 'common/webblobregistry_impl.cc',
252 'common/webblobregistry_impl.h', 250 'common/webblobregistry_impl.h',
253 'common/webblob_messages.h', 251 'common/webblob_messages.h',
254 'common/webkit_param_traits.cc', 252 'common/webkit_param_traits.cc',
255 'common/webkit_param_traits.h', 253 'common/webkit_param_traits.h',
256 'common/webmessageportchannel_impl.cc', 254 'common/webmessageportchannel_impl.cc',
257 'common/webmessageportchannel_impl.h', 255 'common/webmessageportchannel_impl.h',
258 'common/window_container_type.cc', 256 'common/window_container_type.cc',
259 'common/window_container_type.h', 257 'common/window_container_type.h',
260 'common/worker_messages.h', 258 'common/worker_messages.h',
259 'public/common/content_client.cc',
260 'public/common/content_client.h',
261 ], 261 ],
262 'conditions': [ 262 'conditions': [
263 ['OS!="win"', { 263 ['OS!="win"', {
264 'sources!': [ 264 'sources!': [
265 'common/sandbox_policy.cc', 265 'common/sandbox_policy.cc',
266 'common/sandbox_policy.h', 266 'common/sandbox_policy.h',
267 ], 267 ],
268 }], 268 }],
269 ['OS=="mac"', { 269 ['OS=="mac"', {
270 'sources!': [ 270 'sources!': [
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 ], 331 ],
332 'link_settings': { 332 'link_settings': {
333 'libraries': [ 333 'libraries': [
334 '-lEGL', 334 '-lEGL',
335 '-lGLESv2', 335 '-lGLESv2',
336 ], 336 ],
337 }, 337 },
338 }], 338 }],
339 ], 339 ],
340 } 340 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698