| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'base/cocoa/tracking_area.h', | 118 'base/cocoa/tracking_area.h', |
| 119 'base/cocoa/tracking_area.mm', | 119 'base/cocoa/tracking_area.mm', |
| 120 'base/cocoa/underlay_opengl_hosting_window.h', | 120 'base/cocoa/underlay_opengl_hosting_window.h', |
| 121 'base/cocoa/underlay_opengl_hosting_window.mm', | 121 'base/cocoa/underlay_opengl_hosting_window.mm', |
| 122 'base/cocoa/view_description.h', | 122 'base/cocoa/view_description.h', |
| 123 'base/cocoa/view_description.mm', | 123 'base/cocoa/view_description.mm', |
| 124 'base/cocoa/window_size_constants.h', | 124 'base/cocoa/window_size_constants.h', |
| 125 'base/cocoa/window_size_constants.mm', | 125 'base/cocoa/window_size_constants.mm', |
| 126 'base/cursor/cursor.cc', | 126 'base/cursor/cursor.cc', |
| 127 'base/cursor/cursor.h', | 127 'base/cursor/cursor.h', |
| 128 'base/cursor/cursor_android.cc', |
| 128 'base/cursor/cursor_loader.h', | 129 'base/cursor/cursor_loader.h', |
| 129 'base/cursor/cursor_loader_null.cc', | 130 'base/cursor/cursor_loader_null.cc', |
| 130 'base/cursor/cursor_loader_null.h', | 131 'base/cursor/cursor_loader_null.h', |
| 131 'base/cursor/cursor_loader_win.cc', | 132 'base/cursor/cursor_loader_win.cc', |
| 132 'base/cursor/cursor_loader_win.h', | 133 'base/cursor/cursor_loader_win.h', |
| 133 'base/cursor/cursor_loader_x11.cc', | 134 'base/cursor/cursor_loader_x11.cc', |
| 134 'base/cursor/cursor_loader_x11.h', | 135 'base/cursor/cursor_loader_x11.h', |
| 135 'base/cursor/cursor_null.cc', | 136 'base/cursor/cursor_null.cc', |
| 136 'base/cursor/cursor_mac.mm', | 137 'base/cursor/cursor_mac.mm', |
| 137 'base/cursor/cursor_win.cc', | 138 'base/cursor/cursor_win.cc', |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 'libraries': [ | 580 'libraries': [ |
| 580 '-ljnigraphics', | 581 '-ljnigraphics', |
| 581 ], | 582 ], |
| 582 }, | 583 }, |
| 583 }], | 584 }], |
| 584 ['OS=="android" and android_webview_build==0', { | 585 ['OS=="android" and android_webview_build==0', { |
| 585 'dependencies': [ | 586 'dependencies': [ |
| 586 'android/ui_android.gyp:ui_java', | 587 'android/ui_android.gyp:ui_java', |
| 587 ], | 588 ], |
| 588 }], | 589 }], |
| 590 ['OS=="android" and use_aura==0', { |
| 591 'sources!': [ |
| 592 'base/cursor/cursor_android.cc' |
| 593 ], |
| 594 }], |
| 589 ['OS=="android" or OS=="ios"', { | 595 ['OS=="android" or OS=="ios"', { |
| 590 'sources!': [ | 596 'sources!': [ |
| 591 'base/device_form_factor_desktop.cc' | 597 'base/device_form_factor_desktop.cc' |
| 592 ], | 598 ], |
| 593 }], | 599 }], |
| 594 ['OS=="linux"', { | 600 ['OS=="linux"', { |
| 595 'libraries': [ | 601 'libraries': [ |
| 596 '-ldl', | 602 '-ldl', |
| 597 ], | 603 ], |
| 598 }], | 604 }], |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 'variables': { | 636 'variables': { |
| 631 'jni_gen_package': 'ui', | 637 'jni_gen_package': 'ui', |
| 632 'jni_generator_ptr_type': 'long', | 638 'jni_generator_ptr_type': 'long', |
| 633 }, | 639 }, |
| 634 'includes': [ '../build/jni_generator.gypi' ], | 640 'includes': [ '../build/jni_generator.gypi' ], |
| 635 }, | 641 }, |
| 636 ], | 642 ], |
| 637 }], | 643 }], |
| 638 ], | 644 ], |
| 639 } | 645 } |
| OLD | NEW |