OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 15 matching lines...) Expand all Loading... |
26 '../../gin/gin.gyp:gin', | 26 '../../gin/gin.gyp:gin', |
27 '../../gpu/gpu.gyp:gpu', | 27 '../../gpu/gpu.gyp:gpu', |
28 '../../net/net.gyp:net', | 28 '../../net/net.gyp:net', |
29 '../../skia/skia.gyp:skia', | 29 '../../skia/skia.gyp:skia', |
30 '../../third_party/WebKit/public/blink.gyp:blink', | 30 '../../third_party/WebKit/public/blink.gyp:blink', |
31 '../../ui/events/events.gyp:dom_keycode_converter', | 31 '../../ui/events/events.gyp:dom_keycode_converter', |
32 '../../ui/events/events.gyp:events_base', | 32 '../../ui/events/events.gyp:events_base', |
33 '../../ui/gfx/gfx.gyp:gfx', | 33 '../../ui/gfx/gfx.gyp:gfx', |
34 '../../ui/gfx/gfx.gyp:gfx_geometry', | 34 '../../ui/gfx/gfx.gyp:gfx_geometry', |
35 '../../ui/gfx/gfx.gyp:gfx_test_support', | 35 '../../ui/gfx/gfx.gyp:gfx_test_support', |
| 36 '../../ui/latency_info/latency_info.gyp:latency_info', |
36 '../../url/url.gyp:url_lib', | 37 '../../url/url.gyp:url_lib', |
37 '../../v8/src/v8.gyp:v8', | 38 '../../v8/src/v8.gyp:v8', |
38 ], | 39 ], |
39 'include_dirs': [ | 40 'include_dirs': [ |
40 '..', | 41 '..', |
41 ], | 42 ], |
42 # Note: sources list duplicated in GN build. | 43 # Note: sources list duplicated in GN build. |
43 'sources': [ | 44 'sources': [ |
44 'accessibility_controller.cc', | 45 'accessibility_controller.cc', |
45 'accessibility_controller.h', | 46 'accessibility_controller.h', |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 208 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
208 ], | 209 ], |
209 }, | 210 }, |
210 }], | 211 }], |
211 ], | 212 ], |
212 }, | 213 }, |
213 ], | 214 ], |
214 }], # OS=="mac" or OS=="win" | 215 }], # OS=="mac" or OS=="win" |
215 ] | 216 ] |
216 } | 217 } |
OLD | NEW |