| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'codec/png_codec.cc', | 136 'codec/png_codec.cc', |
| 137 'codec/png_codec.h', | 137 'codec/png_codec.h', |
| 138 'color_analysis.cc', | 138 'color_analysis.cc', |
| 139 'color_analysis.h', | 139 'color_analysis.h', |
| 140 'color_profile.cc', | 140 'color_profile.cc', |
| 141 'color_profile.h', | 141 'color_profile.h', |
| 142 'color_profile_mac.cc', | 142 'color_profile_mac.cc', |
| 143 'color_profile_win.cc', | 143 'color_profile_win.cc', |
| 144 'color_utils.cc', | 144 'color_utils.cc', |
| 145 'color_utils.h', | 145 'color_utils.h', |
| 146 'cursor.h', |
| 147 'cursor_mac.mm', |
| 146 'display.cc', | 148 'display.cc', |
| 147 'display.h', | 149 'display.h', |
| 148 'display_observer.cc', | 150 'display_observer.cc', |
| 149 'display_observer.h', | 151 'display_observer.h', |
| 150 'favicon_size.cc', | 152 'favicon_size.cc', |
| 151 'favicon_size.h', | 153 'favicon_size.h', |
| 152 'font.cc', | 154 'font.cc', |
| 153 'font.h', | 155 'font.h', |
| 154 'font_fallback_win.cc', | 156 'font_fallback_win.cc', |
| 155 'font_fallback_win.h', | 157 'font_fallback_win.h', |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 'dependencies': [ | 381 'dependencies': [ |
| 380 'gfx_jni_headers', | 382 'gfx_jni_headers', |
| 381 ], | 383 ], |
| 382 'link_settings': { | 384 'link_settings': { |
| 383 'libraries': [ | 385 'libraries': [ |
| 384 '-landroid', | 386 '-landroid', |
| 385 '-ljnigraphics', | 387 '-ljnigraphics', |
| 386 ], | 388 ], |
| 387 }, | 389 }, |
| 388 }], | 390 }], |
| 389 ['use_aura==0', { | 391 ['use_aura==0 and OS!="mac"', { |
| 390 'sources!': [ | 392 'sources!': [ |
| 391 'nine_image_painter.cc', | 393 'nine_image_painter.cc', |
| 392 'nine_image_painter.h', | 394 'nine_image_painter.h', |
| 393 ], | 395 ], |
| 394 }], | 396 }], |
| 395 ['OS=="android" and use_aura==0', { | 397 ['OS=="android" and use_aura==0', { |
| 396 'sources!': [ | 398 'sources!': [ |
| 397 'path.cc', | 399 'path.cc', |
| 398 ], | 400 ], |
| 399 }], | 401 }], |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 ], | 551 ], |
| 550 'variables': { | 552 'variables': { |
| 551 'test_suite_name': 'gfx_unittests', | 553 'test_suite_name': 'gfx_unittests', |
| 552 }, | 554 }, |
| 553 'includes': [ '../../build/apk_test.gypi' ], | 555 'includes': [ '../../build/apk_test.gypi' ], |
| 554 }, | 556 }, |
| 555 ], | 557 ], |
| 556 }], | 558 }], |
| 557 ], | 559 ], |
| 558 } | 560 } |
| OLD | NEW |