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

Side by Side Diff: content/content_tests.gypi

Issue 705623002: Initialize V8 in PDFium from external files (in-renderer process only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from Ross and Raymes Created 6 years, 1 month 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) 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 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 'browser/compositor/test/no_transport_image_transport_factory.cc', 330 'browser/compositor/test/no_transport_image_transport_factory.cc',
331 'browser/compositor/test/no_transport_image_transport_factory.h', 331 'browser/compositor/test/no_transport_image_transport_factory.h',
332 ], 332 ],
333 'dependencies': [ 333 'dependencies': [
334 '../ui/compositor/compositor.gyp:compositor', 334 '../ui/compositor/compositor.gyp:compositor',
335 '../third_party/libvpx/libvpx.gyp:libvpx', 335 '../third_party/libvpx/libvpx.gyp:libvpx',
336 ], 336 ],
337 }], 337 }],
338 ['OS=="android"', { 338 ['OS=="android"', {
339 'dependencies': [ 339 'dependencies': [
340 '../gin/gin.gyp:gin',
341 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 340 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
342 'content.gyp:content_v8_external_data', 341 'content.gyp:content_v8_external_data',
343 ], 342 ],
344 }], 343 }],
344 ['v8_use_external_startup_data==1', {
345 'dependencies': [
346 '../gin/gin.gyp:gin',
347 ],
348 }],
345 ], 349 ],
346 }, 350 },
347 { 351 {
348 'target_name': 'content_unittests', 352 'target_name': 'content_unittests',
349 'type': '<(gtest_target_type)', 353 'type': '<(gtest_target_type)',
350 'dependencies': [ 354 'dependencies': [
351 'browser/service_worker/service_worker_proto.gyp:proto', 355 'browser/service_worker/service_worker_proto.gyp:proto',
352 'browser/speech/proto/speech_proto.gyp:speech_proto', 356 'browser/speech/proto/speech_proto.gyp:speech_proto',
353 'content.gyp:content_browser', 357 'content.gyp:content_browser',
354 'content.gyp:content_common', 358 'content.gyp:content_common',
(...skipping 1646 matching lines...) Expand 10 before | Expand all | Expand 10 after
2001 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2005 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2002 }, 2006 },
2003 ], 2007 ],
2004 }], 2008 }],
2005 ], 2009 ],
2006 }, 2010 },
2007 ], 2011 ],
2008 }], 2012 }],
2009 ], 2013 ],
2010 } 2014 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698