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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 '-landroid', | 401 '-landroid', |
402 '-ljnigraphics', | 402 '-ljnigraphics', |
403 ], | 403 ], |
404 }, | 404 }, |
405 }], | 405 }], |
406 ['OS=="android" and use_aura==0', { | 406 ['OS=="android" and use_aura==0', { |
407 'sources!': [ | 407 'sources!': [ |
408 'path.cc', | 408 'path.cc', |
409 ], | 409 ], |
410 }], | 410 }], |
| 411 ['OS=="android" and use_aura==1', { |
| 412 'sources!': [ |
| 413 'screen_android.cc', |
| 414 ], |
| 415 }], |
411 ['OS=="android" and android_webview_build==0', { | 416 ['OS=="android" and android_webview_build==0', { |
412 'dependencies': [ | 417 'dependencies': [ |
413 '<(DEPTH)/base/base.gyp:base_java', | 418 '<(DEPTH)/base/base.gyp:base_java', |
414 ], | 419 ], |
415 }], | 420 }], |
416 ['OS=="android" or OS=="ios"', { | 421 ['OS=="android" or OS=="ios"', { |
417 'sources!': [ | 422 'sources!': [ |
418 'render_text.cc', | 423 'render_text.cc', |
419 'render_text.h', | 424 'render_text.h', |
420 'text_utils_skia.cc', | 425 'text_utils_skia.cc', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 'variables': { | 488 'variables': { |
484 'jni_gen_package': 'ui/gfx', | 489 'jni_gen_package': 'ui/gfx', |
485 'jni_generator_ptr_type': 'long' | 490 'jni_generator_ptr_type': 'long' |
486 }, | 491 }, |
487 'includes': [ '../../build/jni_generator.gypi' ], | 492 'includes': [ '../../build/jni_generator.gypi' ], |
488 }, | 493 }, |
489 ], | 494 ], |
490 }], | 495 }], |
491 ], | 496 ], |
492 } | 497 } |
OLD | NEW |