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

Side by Side Diff: media/media.gyp

Issue 601263002: Update content and media unittest isolate targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mark as tracked Created 6 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
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 1928 matching lines...) Expand 10 before | Expand all | Expand 10 after
1939 ['include', '^base/mac/coremedia_glue\\.mm$'], 1939 ['include', '^base/mac/coremedia_glue\\.mm$'],
1940 ['include', '^base/mac/corevideo_glue\\.h$'], 1940 ['include', '^base/mac/corevideo_glue\\.h$'],
1941 ['include', '^base/mac/videotoolbox_glue\\.h$'], 1941 ['include', '^base/mac/videotoolbox_glue\\.h$'],
1942 ['include', '^base/mac/videotoolbox_glue\\.mm$'], 1942 ['include', '^base/mac/videotoolbox_glue\\.mm$'],
1943 ], 1943 ],
1944 }], 1944 }],
1945 ], # target_conditions 1945 ], # target_conditions
1946 }, 1946 },
1947 ], 1947 ],
1948 }], 1948 }],
1949 ['test_isolation_mode != "noop" and archive_gpu_tests==1', {
1950 'targets': [
1951 {
1952 'target_name': 'media_unittests_run',
1953 'type': 'none',
1954 'dependencies': [
1955 'media_unittests',
1956 ],
1957 'includes': [
1958 '../build/isolate.gypi',
1959 'media_unittests.isolate',
1960 ],
1961 'sources': [
1962 'media_unittests.isolate',
1963 ],
1964 },
1965 ],
1966 }],
1949 ], 1967 ],
1950 } 1968 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698