diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-12 01:00:41 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-12 01:00:41 +0000 |
commit | 623c0bd198a26b6609c7545a0cce0578dbad5316 (patch) | |
tree | e5cfac9d974797d95a8b4ee0aa0e4204826f089c /chrome/chrome.gyp | |
parent | 23716fb643383cb737e564d55234a7c2d58eba00 (diff) | |
download | chromium_src-623c0bd198a26b6609c7545a0cce0578dbad5316.zip chromium_src-623c0bd198a26b6609c7545a0cce0578dbad5316.tar.gz chromium_src-623c0bd198a26b6609c7545a0cce0578dbad5316.tar.bz2 |
Move chrome\gpu to content\gpu.
TBR=avi
Review URL: http://codereview.chromium.org/6684015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77903 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rw-r--r-- | chrome/chrome.gyp | 120 |
1 files changed, 1 insertions, 119 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index daaab35..39a6265 100644 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -23,7 +23,6 @@ 'chromium_dependencies': [ 'common', 'browser', - 'chrome_gpu', 'ppapi_plugin', 'profile_import', 'renderer', @@ -31,6 +30,7 @@ 'utility', 'worker', 'service', + '../content/content.gyp:content_gpu', '../printing/printing.gyp:printing', '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:inspector_resources', ], @@ -71,7 +71,6 @@ 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py'], # TODO: remove this helper when we have loops in GYP 'apply_locales_cmd': ['python', '<(DEPTH)/build/apply_locales.py'], - 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/directxsdk)', 'conditions': [ ['OS=="win"', { 'nacl_defines': [ @@ -643,123 +642,6 @@ ], }, { - 'target_name': 'chrome_gpu', - 'type': '<(library)', - 'msvs_guid': 'F10F1ECD-D84D-4C33-8468-9DDFE19F4D8A', - 'dependencies': [ - '../app/app.gyp:app_base', - '../base/base.gyp:base', - 'common', - '../media/media.gyp:media', - '../skia/skia.gyp:skia', - ], - 'sources': [ - 'gpu/gpu_channel.cc', - 'gpu/gpu_channel.h', - 'gpu/gpu_command_buffer_stub.cc', - 'gpu/gpu_command_buffer_stub.h', - 'gpu/gpu_config.h', - 'gpu/gpu_dx_diagnostics_win.cc', - 'gpu/gpu_info_collector_linux.cc', - 'gpu/gpu_info_collector_mac.mm', - 'gpu/gpu_info_collector_win.cc', - 'gpu/gpu_info_collector.cc', - 'gpu/gpu_info_collector.h', - 'gpu/gpu_main.cc', - 'gpu/gpu_process.cc', - 'gpu/gpu_process.h', - 'gpu/gpu_thread.cc', - 'gpu/gpu_thread.h', - 'gpu/gpu_video_decoder.cc', - 'gpu/gpu_video_decoder.h', - 'gpu/gpu_video_service.cc', - 'gpu/gpu_video_service.h', - 'gpu/gpu_watchdog_thread.cc', - 'gpu/gpu_watchdog_thread.h', - 'gpu/media/gpu_video_device.h', - 'gpu/media/fake_gl_video_decode_engine.cc', - 'gpu/media/fake_gl_video_decode_engine.h', - 'gpu/media/fake_gl_video_device.cc', - 'gpu/media/fake_gl_video_device.h', - ], - 'include_dirs': [ - '..', - ], - 'conditions': [ - ['OS=="win"', { - 'include_dirs': [ - '<(DEPTH)/third_party/angle/include', - '<(DEPTH)/third_party/angle/src', - '<(DEPTH)/third_party/wtl/include', - '$(DXSDK_DIR)/include', - ], - 'dependencies': [ - '../third_party/angle/src/build_angle.gyp:libEGL', - '../third_party/angle/src/build_angle.gyp:libGLESv2', - ], - }], - ['OS=="win" and directxsdk_exists=="True"', { - 'actions': [ - { - 'action_name': 'extract_d3dx9', - 'variables': { - 'input': 'Aug2009_d3dx9_42_x86.cab', - 'output': 'd3dx9_42.dll', - }, - 'inputs': [ - '../third_party/directxsdk/files/Redist/<(input)', - ], - 'outputs': [ - '<(PRODUCT_DIR)/<(output)', - ], - 'action': [ - 'python', - '../build/extract_from_cab.py', - '..\\third_party\\directxsdk\\files\\Redist\\<(input)', - '<(output)', - '<(PRODUCT_DIR)', - ], - }, - { - 'action_name': 'extract_d3dcompiler', - 'variables': { - 'input': 'Aug2009_D3DCompiler_42_x86.cab', - 'output': 'D3DCompiler_42.dll', - }, - 'inputs': [ - '../third_party/directxsdk/files/Redist/<(input)', - ], - 'outputs': [ - '<(PRODUCT_DIR)/<(output)', - ], - 'action': [ - 'python', - '../build/extract_from_cab.py', - '..\\third_party\\directxsdk\\files\\Redist\\<(input)', - '<(output)', - '<(PRODUCT_DIR)', - ], - }, - ], - 'sources': [ - 'gpu/media/mft_angle_video_device.cc', - 'gpu/media/mft_angle_video_device.h', - ], - }], - ['OS=="linux" and target_arch!="arm"', { - 'sources': [ - 'gpu/x_util.cc', - 'gpu/x_util.h', - ], - }], - ['enable_gpu==1', { - 'dependencies': [ - '../gpu/gpu.gyp:command_buffer_service', - ], - }], - ], - }, - { 'target_name': 'ppapi_plugin', 'type': '<(library)', 'dependencies': [ |