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

Side by Side Diff: media/media.gyp

Issue 25015003: gfx: Create a separate gfx component out of ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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
« no previous file with comments | « gpu/gpu.gyp ('k') | printing/printing.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'target_name': 'media', 42 'target_name': 'media',
43 'type': '<(component)', 43 'type': '<(component)',
44 'dependencies': [ 44 'dependencies': [
45 '../base/base.gyp:base', 45 '../base/base.gyp:base',
46 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 46 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
47 '../crypto/crypto.gyp:crypto', 47 '../crypto/crypto.gyp:crypto',
48 '../net/net.gyp:net', 48 '../net/net.gyp:net',
49 '../gpu/gpu.gyp:command_buffer_common', 49 '../gpu/gpu.gyp:command_buffer_common',
50 '../skia/skia.gyp:skia', 50 '../skia/skia.gyp:skia',
51 '../third_party/opus/opus.gyp:opus', 51 '../third_party/opus/opus.gyp:opus',
52 '../ui/gfx/gfx.gyp:gfx',
52 '../ui/ui.gyp:ui', 53 '../ui/ui.gyp:ui',
53 '../url/url.gyp:url_lib', 54 '../url/url.gyp:url_lib',
54 'shared_memory_support', 55 'shared_memory_support',
55 ], 56 ],
56 'defines': [ 57 'defines': [
57 'MEDIA_IMPLEMENTATION', 58 'MEDIA_IMPLEMENTATION',
58 ], 59 ],
59 'include_dirs': [ 60 'include_dirs': [
60 '..', 61 '..',
61 ], 62 ],
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 'media', 852 'media',
852 'media_test_support', 853 'media_test_support',
853 'shared_memory_support', 854 'shared_memory_support',
854 '../base/base.gyp:base', 855 '../base/base.gyp:base',
855 '../base/base.gyp:base_i18n', 856 '../base/base.gyp:base_i18n',
856 '../base/base.gyp:test_support_base', 857 '../base/base.gyp:test_support_base',
857 '../gpu/gpu.gyp:command_buffer_common', 858 '../gpu/gpu.gyp:command_buffer_common',
858 '../skia/skia.gyp:skia', 859 '../skia/skia.gyp:skia',
859 '../testing/gmock.gyp:gmock', 860 '../testing/gmock.gyp:gmock',
860 '../testing/gtest.gyp:gtest', 861 '../testing/gtest.gyp:gtest',
862 '../ui/gfx/gfx.gyp:gfx',
861 '../ui/ui.gyp:ui', 863 '../ui/ui.gyp:ui',
862 ], 864 ],
863 'sources': [ 865 'sources': [
864 'audio/android/audio_android_unittest.cc', 866 'audio/android/audio_android_unittest.cc',
865 'audio/audio_input_controller_unittest.cc', 867 'audio/audio_input_controller_unittest.cc',
866 'audio/audio_input_unittest.cc', 868 'audio/audio_input_unittest.cc',
867 'audio/audio_input_volume_unittest.cc', 869 'audio/audio_input_volume_unittest.cc',
868 'audio/audio_low_latency_input_output_unittest.cc', 870 'audio/audio_low_latency_input_output_unittest.cc',
869 'audio/audio_manager_unittest.cc', 871 'audio/audio_manager_unittest.cc',
870 'audio/audio_output_controller_unittest.cc', 872 'audio/audio_output_controller_unittest.cc',
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1318 }], 1320 }],
1319 ['use_x11==1', { 1321 ['use_x11==1', {
1320 'targets': [ 1322 'targets': [
1321 { 1323 {
1322 'target_name': 'player_x11', 1324 'target_name': 'player_x11',
1323 'type': 'executable', 1325 'type': 'executable',
1324 'dependencies': [ 1326 'dependencies': [
1325 'media', 1327 'media',
1326 '../base/base.gyp:base', 1328 '../base/base.gyp:base',
1327 '../ui/gl/gl.gyp:gl', 1329 '../ui/gl/gl.gyp:gl',
1330 '../ui/gfx/gfx.gyp:gfx',
1328 '../ui/ui.gyp:ui', 1331 '../ui/ui.gyp:ui',
1329 ], 1332 ],
1330 'link_settings': { 1333 'link_settings': {
1331 'libraries': [ 1334 'libraries': [
1332 '-lX11', 1335 '-lX11',
1333 '-lXrender', 1336 '-lXrender',
1334 '-lXext', 1337 '-lXext',
1335 ], 1338 ],
1336 }, 1339 },
1337 'conditions': [ 1340 'conditions': [
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1537 ], 1540 ],
1538 }], 1541 }],
1539 ], 1542 ],
1540 }], 1543 }],
1541 ], 1544 ],
1542 }, 1545 },
1543 ], 1546 ],
1544 }], 1547 }],
1545 ], 1548 ],
1546 } 1549 }
OLDNEW
« no previous file with comments | « gpu/gpu.gyp ('k') | printing/printing.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698