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 'includes': [ | 9 'includes': [ |
10 'ui_resources.gypi', | 10 'ui_resources.gypi', |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 'gfx/blit.h', | 316 'gfx/blit.h', |
317 'gfx/canvas.cc', | 317 'gfx/canvas.cc', |
318 'gfx/canvas.h', | 318 'gfx/canvas.h', |
319 'gfx/canvas_android.cc', | 319 'gfx/canvas_android.cc', |
320 'gfx/canvas_linux.cc', | 320 'gfx/canvas_linux.cc', |
321 'gfx/canvas_mac.mm', | 321 'gfx/canvas_mac.mm', |
322 'gfx/canvas_paint.h', | 322 'gfx/canvas_paint.h', |
323 'gfx/canvas_paint_win.cc', | 323 'gfx/canvas_paint_win.cc', |
324 'gfx/canvas_skia.cc', | 324 'gfx/canvas_skia.cc', |
325 'gfx/canvas_skia_paint.h', | 325 'gfx/canvas_skia_paint.h', |
326 'gfx/canvas_win.cc', | |
327 'gfx/codec/jpeg_codec.cc', | 326 'gfx/codec/jpeg_codec.cc', |
328 'gfx/codec/jpeg_codec.h', | 327 'gfx/codec/jpeg_codec.h', |
329 'gfx/codec/png_codec.cc', | 328 'gfx/codec/png_codec.cc', |
330 'gfx/codec/png_codec.h', | 329 'gfx/codec/png_codec.h', |
331 'gfx/color_analysis.cc', | 330 'gfx/color_analysis.cc', |
332 'gfx/color_analysis.h', | 331 'gfx/color_analysis.h', |
333 'gfx/color_utils.cc', | 332 'gfx/color_utils.cc', |
334 'gfx/color_utils.h', | 333 'gfx/color_utils.h', |
335 'gfx/display.cc', | 334 'gfx/display.cc', |
336 'gfx/display.h', | 335 'gfx/display.h', |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 'ui_controls/ui_controls_win.cc', | 435 'ui_controls/ui_controls_win.cc', |
437 ], | 436 ], |
438 'conditions': [ | 437 'conditions': [ |
439 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. | 438 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. |
440 # http://crbug.com/105550 | 439 # http://crbug.com/105550 |
441 ['use_canvas_skia==1', { | 440 ['use_canvas_skia==1', { |
442 'sources!': [ | 441 'sources!': [ |
443 'gfx/canvas_android.cc', | 442 'gfx/canvas_android.cc', |
444 'gfx/canvas_linux.cc', | 443 'gfx/canvas_linux.cc', |
445 'gfx/canvas_mac.mm', | 444 'gfx/canvas_mac.mm', |
446 'gfx/canvas_win.cc', | |
447 ], | 445 ], |
448 }, { # use_canvas_skia!=1 | 446 }, { # use_canvas_skia!=1 |
449 'sources!': [ | 447 'sources!': [ |
450 'gfx/canvas_skia.cc', | 448 'gfx/canvas_skia.cc', |
451 ], | 449 ], |
452 }], | 450 }], |
453 ['use_aura==1', { | 451 ['use_aura==1', { |
454 'sources/': [ | 452 'sources/': [ |
455 ['exclude', 'gfx/gtk_'], | 453 ['exclude', 'gfx/gtk_'], |
456 ['exclude', 'gfx/gtk_util.cc'], | 454 ['exclude', 'gfx/gtk_util.cc'], |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
744 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ | 742 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); '
\ |
745 'os.chmod(\'<(ui_copy_dest)\', 0700)' | 743 'os.chmod(\'<(ui_copy_dest)\', 0700)' |
746 ] | 744 ] |
747 } | 745 } |
748 ], | 746 ], |
749 }, | 747 }, |
750 ], | 748 ], |
751 }], | 749 }], |
752 ], | 750 ], |
753 } | 751 } |
OLD | NEW |