| 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 { |
| 11 'target_name': 'gfx', | 11 'target_name': 'gfx', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '<(DEPTH)/base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
| 15 '<(DEPTH)/base/base.gyp:base_i18n', | 15 '<(DEPTH)/base/base.gyp:base_i18n', |
| 16 '<(DEPTH)/base/base.gyp:base_static', | 16 '<(DEPTH)/base/base.gyp:base_static', |
| 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 18 '<(DEPTH)/net/net.gyp:net', | 18 '<(DEPTH)/net/net.gyp:net', |
| 19 '<(DEPTH)/skia/skia.gyp:skia', | 19 '<(DEPTH)/skia/skia.gyp:skia', |
| 20 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 20 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 21 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 21 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 22 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | 22 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', |
| 23 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 23 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
| 24 '<(DEPTH)/url/url.gyp:url_lib', | 24 '<(DEPTH)/url/url.gyp:url_lib', |
| 25 ], | 25 ], |
| 26 # text_elider.h includes ICU headers. |
| 27 'export_dependent_settings': [ |
| 28 '<(DEPTH)/skia/skia.gyp:skia', |
| 29 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 30 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 31 ], |
| 26 'defines': [ | 32 'defines': [ |
| 27 'GFX_IMPLEMENTATION', | 33 'GFX_IMPLEMENTATION', |
| 28 ], | 34 ], |
| 29 'sources': [ | 35 'sources': [ |
| 30 'android/device_display_info.cc', | 36 'android/device_display_info.cc', |
| 31 'android/device_display_info.h', | 37 'android/device_display_info.h', |
| 32 'android/gfx_jni_registrar.cc', | 38 'android/gfx_jni_registrar.cc', |
| 33 'android/gfx_jni_registrar.h', | 39 'android/gfx_jni_registrar.h', |
| 34 'android/java_bitmap.cc', | 40 'android/java_bitmap.cc', |
| 35 'android/java_bitmap.h', | 41 'android/java_bitmap.h', |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 ], | 408 ], |
| 403 'variables': { | 409 'variables': { |
| 404 'jni_gen_package': 'ui/gfx', | 410 'jni_gen_package': 'ui/gfx', |
| 405 }, | 411 }, |
| 406 'includes': [ '../../build/jni_generator.gypi' ], | 412 'includes': [ '../../build/jni_generator.gypi' ], |
| 407 }, | 413 }, |
| 408 ], | 414 ], |
| 409 }], | 415 }], |
| 410 ], | 416 ], |
| 411 } | 417 } |
| OLD | NEW |