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

Side by Side Diff: content/content_renderer.gypi

Issue 11083002: Allow custom context menus to be requested. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../ppapi/ppapi_internal.gyp:ppapi_host', 9 '../ppapi/ppapi_internal.gyp:ppapi_host',
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
(...skipping 12 matching lines...) Expand all
23 '../webkit/support/webkit_support.gyp:glue', 23 '../webkit/support/webkit_support.gyp:glue',
24 '../webkit/support/webkit_support.gyp:webkit_media', 24 '../webkit/support/webkit_support.gyp:webkit_media',
25 '../webkit/support/webkit_support.gyp:webkit_gpu', 25 '../webkit/support/webkit_support.gyp:webkit_gpu',
26 ], 26 ],
27 'include_dirs': [ 27 'include_dirs': [
28 '..', 28 '..',
29 ], 29 ],
30 'sources': [ 30 'sources': [
31 'public/renderer/content_renderer_client.cc', 31 'public/renderer/content_renderer_client.cc',
32 'public/renderer/content_renderer_client.h', 32 'public/renderer/content_renderer_client.h',
33 'public/renderer/context_menu_client.h',
33 'public/renderer/document_state.cc', 34 'public/renderer/document_state.cc',
34 'public/renderer/document_state.h', 35 'public/renderer/document_state.h',
35 'public/renderer/navigation_state.cc', 36 'public/renderer/navigation_state.cc',
36 'public/renderer/navigation_state.h', 37 'public/renderer/navigation_state.h',
37 'public/renderer/render_process_observer.cc', 38 'public/renderer/render_process_observer.cc',
38 'public/renderer/render_process_observer.h', 39 'public/renderer/render_process_observer.h',
39 'public/renderer/render_thread.cc', 40 'public/renderer/render_thread.cc',
40 'public/renderer/render_thread.h', 41 'public/renderer/render_thread.h',
41 'public/renderer/render_view.h', 42 'public/renderer/render_view.h',
42 'public/renderer/render_view_observer.cc', 43 'public/renderer/render_view_observer.cc',
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 }], 370 }],
370 ], 371 ],
371 'target_conditions': [ 372 'target_conditions': [
372 ['OS=="android"', { 373 ['OS=="android"', {
373 'sources/': [ 374 'sources/': [
374 ['include', '^renderer/render_view_linux\\.cc$'], 375 ['include', '^renderer/render_view_linux\\.cc$'],
375 ], 376 ],
376 }], 377 }],
377 ], 378 ],
378 } 379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698