OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'geometry/size_f.h', | 60 'geometry/size_f.h', |
61 'geometry/vector2d.cc', | 61 'geometry/vector2d.cc', |
62 'geometry/vector2d.h', | 62 'geometry/vector2d.h', |
63 'geometry/vector2d_conversions.cc', | 63 'geometry/vector2d_conversions.cc', |
64 'geometry/vector2d_conversions.h', | 64 'geometry/vector2d_conversions.h', |
65 'geometry/vector2d_f.cc', | 65 'geometry/vector2d_f.cc', |
66 'geometry/vector2d_f.h', | 66 'geometry/vector2d_f.h', |
67 'geometry/vector3d_f.cc', | 67 'geometry/vector3d_f.cc', |
68 'geometry/vector3d_f.h', | 68 'geometry/vector3d_f.h', |
69 ], | 69 ], |
| 70 # TODO(jdduke): Revisit optimization after gauging benefit, crbug/419051. |
| 71 'includes': [ |
| 72 '../../build/android/increase_size_for_speed.gypi', |
| 73 ], |
70 }, | 74 }, |
71 { | 75 { |
72 'target_name': 'gfx', | 76 'target_name': 'gfx', |
73 'type': '<(component)', | 77 'type': '<(component)', |
74 'dependencies': [ | 78 'dependencies': [ |
75 '<(DEPTH)/base/base.gyp:base', | 79 '<(DEPTH)/base/base.gyp:base', |
76 '<(DEPTH)/base/base.gyp:base_i18n', | 80 '<(DEPTH)/base/base.gyp:base_i18n', |
77 '<(DEPTH)/base/base.gyp:base_static', | 81 '<(DEPTH)/base/base.gyp:base_static', |
78 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 82 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
79 '<(DEPTH)/skia/skia.gyp:skia', | 83 '<(DEPTH)/skia/skia.gyp:skia', |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 'win/dpi.cc', | 304 'win/dpi.cc', |
301 'win/dpi.h', | 305 'win/dpi.h', |
302 'win/hwnd_util.cc', | 306 'win/hwnd_util.cc', |
303 'win/hwnd_util.h', | 307 'win/hwnd_util.h', |
304 'win/scoped_set_map_mode.h', | 308 'win/scoped_set_map_mode.h', |
305 'win/singleton_hwnd.cc', | 309 'win/singleton_hwnd.cc', |
306 'win/singleton_hwnd.h', | 310 'win/singleton_hwnd.h', |
307 'win/window_impl.cc', | 311 'win/window_impl.cc', |
308 'win/window_impl.h', | 312 'win/window_impl.h', |
309 ], | 313 ], |
| 314 'includes': [ |
| 315 '../../build/android/increase_size_for_speed.gypi', |
| 316 ], |
310 'conditions': [ | 317 'conditions': [ |
311 ['OS=="ios"', { | 318 ['OS=="ios"', { |
312 'dependencies': [ | 319 'dependencies': [ |
313 '<(DEPTH)/ui/ios/ui_ios.gyp:ui_ios', | 320 '<(DEPTH)/ui/ios/ui_ios.gyp:ui_ios', |
314 ], | 321 ], |
315 # iOS only uses a subset of UI. | 322 # iOS only uses a subset of UI. |
316 'sources/': [ | 323 'sources/': [ |
317 ['exclude', '^codec/jpeg_codec\\.cc$'], | 324 ['exclude', '^codec/jpeg_codec\\.cc$'], |
318 ], | 325 ], |
319 }, { | 326 }, { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 ], | 484 ], |
478 'variables': { | 485 'variables': { |
479 'jni_gen_package': 'ui/gfx', | 486 'jni_gen_package': 'ui/gfx', |
480 }, | 487 }, |
481 'includes': [ '../../build/jni_generator.gypi' ], | 488 'includes': [ '../../build/jni_generator.gypi' ], |
482 }, | 489 }, |
483 ], | 490 ], |
484 }], | 491 }], |
485 ], | 492 ], |
486 } | 493 } |
OLD | NEW |