| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 'image/image_skia_source.h', | 189 'image/image_skia_source.h', |
| 190 'image/image_skia_util_ios.h', | 190 'image/image_skia_util_ios.h', |
| 191 'image/image_skia_util_ios.mm', | 191 'image/image_skia_util_ios.mm', |
| 192 'image/image_skia_util_mac.h', | 192 'image/image_skia_util_mac.h', |
| 193 'image/image_skia_util_mac.mm', | 193 'image/image_skia_util_mac.mm', |
| 194 'image/image_util.cc', | 194 'image/image_util.cc', |
| 195 'image/image_util.h', | 195 'image/image_util.h', |
| 196 'image/image_util_ios.mm', | 196 'image/image_util_ios.mm', |
| 197 'interpolated_transform.cc', | 197 'interpolated_transform.cc', |
| 198 'interpolated_transform.h', | 198 'interpolated_transform.h', |
| 199 'layout_util.h', |
| 199 'linux_font_delegate.cc', | 200 'linux_font_delegate.cc', |
| 200 'linux_font_delegate.h', | 201 'linux_font_delegate.h', |
| 201 'mac/scoped_ns_disable_screen_updates.h', | 202 'mac/scoped_ns_disable_screen_updates.h', |
| 202 'native_widget_types.h', | 203 'native_widget_types.h', |
| 203 'nine_image_painter.cc', | 204 'nine_image_painter.cc', |
| 204 'nine_image_painter.h', | 205 'nine_image_painter.h', |
| 205 'ozone/dri/dri_skbitmap.cc', | 206 'ozone/dri/dri_skbitmap.cc', |
| 206 'ozone/dri/dri_skbitmap.h', | 207 'ozone/dri/dri_skbitmap.h', |
| 207 'ozone/dri/dri_surface.cc', | 208 'ozone/dri/dri_surface.cc', |
| 208 'ozone/dri/dri_surface.h', | 209 'ozone/dri/dri_surface.h', |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 'win/window_impl.cc', | 314 'win/window_impl.cc', |
| 314 'win/window_impl.h', | 315 'win/window_impl.h', |
| 315 'x/x11_atom_cache.cc', | 316 'x/x11_atom_cache.cc', |
| 316 'x/x11_atom_cache.h', | 317 'x/x11_atom_cache.h', |
| 317 'x/x11_error_tracker.cc', | 318 'x/x11_error_tracker.cc', |
| 318 'x/x11_error_tracker.h', | 319 'x/x11_error_tracker.h', |
| 319 'x/x11_types.cc', | 320 'x/x11_types.cc', |
| 320 'x/x11_types.h', | 321 'x/x11_types.h', |
| 321 ], | 322 ], |
| 322 'conditions': [ | 323 'conditions': [ |
| 324 ['OS=="mac"', { |
| 325 # mac specific layout code |
| 326 'sources': [ |
| 327 'layout_util.mm', |
| 328 ], |
| 329 }, { # OS!=mac |
| 330 'sources': [ |
| 331 'layout_util.cc', |
| 332 ], |
| 333 }], |
| 323 ['OS=="ios"', { | 334 ['OS=="ios"', { |
| 324 # iOS only uses a subset of UI. | 335 # iOS only uses a subset of UI. |
| 325 'sources/': [ | 336 'sources/': [ |
| 326 ['exclude', '^codec/jpeg_codec\\.cc$'], | 337 ['exclude', '^codec/jpeg_codec\\.cc$'], |
| 327 ], | 338 ], |
| 328 }, { | 339 }, { |
| 329 'dependencies': [ | 340 'dependencies': [ |
| 330 '<(libjpeg_gyp_path):libjpeg', | 341 '<(libjpeg_gyp_path):libjpeg', |
| 331 ], | 342 ], |
| 332 }], | 343 }], |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 'variables': { | 541 'variables': { |
| 531 'jni_gen_package': 'ui/gfx', | 542 'jni_gen_package': 'ui/gfx', |
| 532 'jni_generator_ptr_type': 'long' | 543 'jni_generator_ptr_type': 'long' |
| 533 }, | 544 }, |
| 534 'includes': [ '../../build/jni_generator.gypi' ], | 545 'includes': [ '../../build/jni_generator.gypi' ], |
| 535 }, | 546 }, |
| 536 ], | 547 ], |
| 537 }], | 548 }], |
| 538 ], | 549 ], |
| 539 } | 550 } |
| OLD | NEW |