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

Side by Side Diff: content/content_renderer.gypi

Issue 10537036: Added rendering benchmark javascript hook (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: renaming Created 8 years, 5 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 (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',
11 '../ppapi/ppapi_internal.gyp:ppapi_shared', 11 '../ppapi/ppapi_internal.gyp:ppapi_shared',
12 '../skia/skia.gyp:skia', 12 '../skia/skia.gyp:skia',
13 '../third_party/icu/icu.gyp:icuuc', 13 '../third_party/icu/icu.gyp:icuuc',
14 '../third_party/icu/icu.gyp:icui18n', 14 '../third_party/icu/icu.gyp:icui18n',
15 '../third_party/libjingle/libjingle.gyp:libjingle', 15 '../third_party/libjingle/libjingle.gyp:libjingle',
16 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 16 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
17 '../third_party/npapi/npapi.gyp:npapi', 17 '../third_party/npapi/npapi.gyp:npapi',
18 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 18 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
19 '../ui/surface/surface.gyp:surface', 19 '../ui/surface/surface.gyp:surface',
20 '../v8/tools/gyp/v8.gyp:v8', 20 '../v8/tools/gyp/v8.gyp:v8',
21 '../webkit/support/webkit_support.gyp:glue', 21 '../webkit/support/webkit_support.gyp:glue',
22 '../webkit/support/webkit_support.gyp:webkit_media', 22 '../webkit/support/webkit_support.gyp:webkit_media',
23 '../webkit/support/webkit_support.gyp:webkit_gpu', 23 '../webkit/support/webkit_support.gyp:webkit_gpu',
24 ], 24 ],
25 'include_dirs': [ 25 'include_dirs': [
26 '..', 26 '..',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'public/renderer/all_rendering_benchmarks.cc',
30 'public/renderer/all_rendering_benchmarks.h',
29 'public/renderer/content_renderer_client.cc', 31 'public/renderer/content_renderer_client.cc',
30 'public/renderer/content_renderer_client.h', 32 'public/renderer/content_renderer_client.h',
31 'public/renderer/document_state.cc', 33 'public/renderer/document_state.cc',
32 'public/renderer/document_state.h', 34 'public/renderer/document_state.h',
33 'public/renderer/navigation_state.cc', 35 'public/renderer/navigation_state.cc',
34 'public/renderer/navigation_state.h', 36 'public/renderer/navigation_state.h',
35 'public/renderer/render_process_observer.cc', 37 'public/renderer/render_process_observer.cc',
36 'public/renderer/render_process_observer.h', 38 'public/renderer/render_process_observer.h',
37 'public/renderer/render_thread.cc', 39 'public/renderer/render_thread.cc',
38 'public/renderer/render_thread.h', 40 'public/renderer/render_thread.h',
39 'public/renderer/render_view.h', 41 'public/renderer/render_view.h',
40 'public/renderer/render_view_observer.cc', 42 'public/renderer/render_view_observer.cc',
41 'public/renderer/render_view_observer.h', 43 'public/renderer/render_view_observer.h',
42 'public/renderer/render_view_observer_tracker.h', 44 'public/renderer/render_view_observer_tracker.h',
43 'public/renderer/render_view_visitor.h', 45 'public/renderer/render_view_visitor.h',
46 'public/renderer/rendering_benchmark_results.h',
47 'public/renderer/rendering_benchmark.cc',
48 'public/renderer/rendering_benchmark.h',
44 'public/renderer/v8_value_converter.h', 49 'public/renderer/v8_value_converter.h',
45 'renderer/accessibility_node_serializer.cc', 50 'renderer/accessibility_node_serializer.cc',
46 'renderer/accessibility_node_serializer.h', 51 'renderer/accessibility_node_serializer.h',
47 'renderer/active_notification_tracker.cc', 52 'renderer/active_notification_tracker.cc',
48 'renderer/active_notification_tracker.h', 53 'renderer/active_notification_tracker.h',
49 'renderer/android/address_detector.cc', 54 'renderer/android/address_detector.cc',
50 'renderer/android/address_detector.h', 55 'renderer/android/address_detector.h',
51 'renderer/android/content_detector.cc', 56 'renderer/android/content_detector.cc',
52 'renderer/android/content_detector.h', 57 'renderer/android/content_detector.h',
53 'renderer/android/email_detector.cc', 58 'renderer/android/email_detector.cc',
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 }], 350 }],
346 ], 351 ],
347 'target_conditions': [ 352 'target_conditions': [
348 ['OS=="android"', { 353 ['OS=="android"', {
349 'sources/': [ 354 'sources/': [
350 ['include', '^renderer/render_view_linux\\.cc$'], 355 ['include', '^renderer/render_view_linux\\.cc$'],
351 ], 356 ],
352 }], 357 }],
353 ], 358 ],
354 } 359 }
OLDNEW
« no previous file with comments | « no previous file | content/public/renderer/all_rendering_benchmarks.h » ('j') | content/public/renderer/all_rendering_benchmarks.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698