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

Side by Side Diff: content/content_tests.gypi

Issue 116293005: Refactor content/ to use ui::AXNodeData instead of blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update content/DEPS instead of subdirs Created 6 years, 11 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) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 'test_support_content', 306 'test_support_content',
307 'browser/speech/proto/speech_proto.gyp:speech_proto', 307 'browser/speech/proto/speech_proto.gyp:speech_proto',
308 '../base/base.gyp:test_support_base', 308 '../base/base.gyp:test_support_base',
309 '../crypto/crypto.gyp:crypto', 309 '../crypto/crypto.gyp:crypto',
310 '../net/net.gyp:net_test_support', 310 '../net/net.gyp:net_test_support',
311 '../skia/skia.gyp:skia', 311 '../skia/skia.gyp:skia',
312 '../sql/sql.gyp:sql', 312 '../sql/sql.gyp:sql',
313 '../sql/sql.gyp:test_support_sql', 313 '../sql/sql.gyp:test_support_sql',
314 '../testing/gmock.gyp:gmock', 314 '../testing/gmock.gyp:gmock',
315 '../testing/gtest.gyp:gtest', 315 '../testing/gtest.gyp:gtest',
316 '../ui/accessibility/accessibility.gyp:accessibility',
316 '../ui/gfx/gfx.gyp:gfx', 317 '../ui/gfx/gfx.gyp:gfx',
317 '../ui/gfx/gfx.gyp:gfx_geometry', 318 '../ui/gfx/gfx.gyp:gfx_geometry',
318 '../ui/ui.gyp:ui', 319 '../ui/ui.gyp:ui',
319 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', 320 '../webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
320 ], 321 ],
321 'include_dirs': [ 322 'include_dirs': [
322 '..', 323 '..',
323 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems_unittest.cc. 324 '<(SHARED_INTERMEDIATE_DIR)', # Needed by key_systems_unittest.cc.
324 ], 325 ],
325 'sources': [ 326 'sources': [
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
904 '../ppapi/ppapi_internal.gyp:ppapi_host', 905 '../ppapi/ppapi_internal.gyp:ppapi_host',
905 '../ppapi/ppapi_internal.gyp:ppapi_ipc', 906 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
906 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 907 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
907 '../ppapi/ppapi_internal.gyp:ppapi_shared', 908 '../ppapi/ppapi_internal.gyp:ppapi_shared',
908 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', 909 '../ppapi/ppapi_internal.gyp:ppapi_unittest_shared',
909 '../testing/gmock.gyp:gmock', 910 '../testing/gmock.gyp:gmock',
910 '../testing/gtest.gyp:gtest', 911 '../testing/gtest.gyp:gtest',
911 '../third_party/WebKit/public/blink.gyp:blink', 912 '../third_party/WebKit/public/blink.gyp:blink',
912 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 913 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
913 '../third_party/mesa/mesa.gyp:osmesa', 914 '../third_party/mesa/mesa.gyp:osmesa',
915 '../ui/accessibility/accessibility.gyp:accessibility',
914 '../ui/gfx/gfx.gyp:gfx', 916 '../ui/gfx/gfx.gyp:gfx',
915 '../ui/gfx/gfx.gyp:gfx_geometry', 917 '../ui/gfx/gfx.gyp:gfx_geometry',
916 '../ui/gl/gl.gyp:gl', 918 '../ui/gl/gl.gyp:gl',
917 '../ui/resources/ui_resources.gyp:ui_resources', 919 '../ui/resources/ui_resources.gyp:ui_resources',
918 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 920 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
919 '../ui/snapshot/snapshot.gyp:snapshot', 921 '../ui/snapshot/snapshot.gyp:snapshot',
920 '../ui/ui.gyp:ui', 922 '../ui/ui.gyp:ui',
921 '../webkit/child/webkit_child.gyp:webkit_child', 923 '../webkit/child/webkit_child.gyp:webkit_child',
922 '../webkit/glue/webkit_glue.gyp:glue', 924 '../webkit/glue/webkit_glue.gyp:glue',
923 '../webkit/renderer/webkit_renderer.gyp:webkit_renderer', 925 '../webkit/renderer/webkit_renderer.gyp:webkit_renderer',
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1643 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1642 }, 1644 },
1643 ], 1645 ],
1644 }], 1646 }],
1645 ], 1647 ],
1646 }, 1648 },
1647 ], 1649 ],
1648 }], 1650 }],
1649 ], 1651 ],
1650 } 1652 }
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/accessibility/accessibility_node_serializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698