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_common.gypi

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another skia dependency Created 4 years, 9 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../cc/cc.gyp:cc', 8 '../cc/cc.gyp:cc',
9 '../components/tracing.gyp:tracing', 9 '../components/tracing.gyp:tracing',
10 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 10 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'script': '<(DEPTH)/build/util/version.py', 71 'script': '<(DEPTH)/build/util/version.py',
72 'lastchange': '<(DEPTH)/build/util/LASTCHANGE.blink', 72 'lastchange': '<(DEPTH)/build/util/LASTCHANGE.blink',
73 'template': '<(DEPTH)/build/util/webkit_version.h.in', 73 'template': '<(DEPTH)/build/util/webkit_version.h.in',
74 }, 74 },
75 }, 75 },
76 ], 76 ],
77 'export_dependent_settings': [ 77 'export_dependent_settings': [
78 '../base/base.gyp:base', 78 '../base/base.gyp:base',
79 '../mojo/mojo_base.gyp:mojo_application_bindings', 79 '../mojo/mojo_base.gyp:mojo_application_bindings',
80 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 80 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
81 '../skia/skia.gyp:skia',
81 # The public content API headers directly include Blink API headers, so we 82 # The public content API headers directly include Blink API headers, so we
82 # have to export the blink header settings so that relative paths in these 83 # have to export the blink header settings so that relative paths in these
83 # headers resolve correctly. 84 # headers resolve correctly.
84 '../third_party/WebKit/public/blink_headers.gyp:blink_headers', 85 '../third_party/WebKit/public/blink_headers.gyp:blink_headers',
85 '../ui/accessibility/accessibility.gyp:ax_gen', 86 '../ui/accessibility/accessibility.gyp:ax_gen',
86 ], 87 ],
87 'variables': { 88 'variables': {
88 'use_v4lplugin%': 0, 89 'use_v4lplugin%': 0,
89 'use_v4l2_codec%': 0, 90 'use_v4l2_codec%': 0,
90 'public_common_sources': [ 91 'public_common_sources': [
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc', 1086 'common/gpu/client/gpu_memory_buffer_impl_ozone.cc',
1086 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc', 1087 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.cc',
1087 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h', 1088 'common/gpu/client/gpu_memory_buffer_impl_ozone_native_pixmap.h',
1088 'common/gpu/gpu_memory_buffer_factory_ozone.cc', 1089 'common/gpu/gpu_memory_buffer_factory_ozone.cc',
1089 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc', 1090 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.cc',
1090 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h', 1091 'common/gpu/gpu_memory_buffer_factory_ozone_native_pixmap.h',
1091 ], 1092 ],
1092 }], 1093 }],
1093 ], 1094 ],
1094 } 1095 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698