Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(257)

Side by Side Diff: app/app_base.gypi

Issue 5292007: Integrates libjpeg-turbo into Chromium (Chromium side)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'app_base_target': 0, 8 'app_base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 # target, but it doesn't work due to a bug in gyp 68 # target, but it doesn't work due to a bug in gyp
69 'app_resources', 69 'app_resources',
70 'app_strings', 70 'app_strings',
71 '../base/base.gyp:base', 71 '../base/base.gyp:base',
72 '../base/base.gyp:base_i18n', 72 '../base/base.gyp:base_i18n',
73 '../gfx/gfx.gyp:gfx', 73 '../gfx/gfx.gyp:gfx',
74 '../net/net.gyp:net', 74 '../net/net.gyp:net',
75 '../skia/skia.gyp:skia', 75 '../skia/skia.gyp:skia',
76 '../third_party/icu/icu.gyp:icui18n', 76 '../third_party/icu/icu.gyp:icui18n',
77 '../third_party/icu/icu.gyp:icuuc', 77 '../third_party/icu/icu.gyp:icuuc',
78 '../third_party/libjpeg/libjpeg.gyp:libjpeg',
79 '../third_party/libpng/libpng.gyp:libpng', 78 '../third_party/libpng/libpng.gyp:libpng',
80 '../third_party/sqlite/sqlite.gyp:sqlite', 79 '../third_party/sqlite/sqlite.gyp:sqlite',
81 '../third_party/zlib/zlib.gyp:zlib', 80 '../third_party/zlib/zlib.gyp:zlib',
82 ], 81 ],
83 'include_dirs': [ 82 'include_dirs': [
84 '../third_party/mesa/MesaLib/include', 83 '../third_party/mesa/MesaLib/include',
85 '<(gl_binding_output_dir)', 84 '<(gl_binding_output_dir)',
86 ], 85 ],
87 # TODO(gregoryd): The direct_dependent_settings should be shared with 86 # TODO(gregoryd): The direct_dependent_settings should be shared with
88 # the 64-bit target, but it doesn't work due to a bug in gyp 87 # the 64-bit target, but it doesn't work due to a bug in gyp
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'event_synthesis_gtk.h', 392 'event_synthesis_gtk.h',
394 'keyboard_code_conversion_gtk.cc', 393 'keyboard_code_conversion_gtk.cc',
395 'keyboard_code_conversion_gtk.h', 394 'keyboard_code_conversion_gtk.h',
396 'keyboard_code_conversion_mac.mm', 395 'keyboard_code_conversion_mac.mm',
397 'keyboard_code_conversion_mac.h', 396 'keyboard_code_conversion_mac.h',
398 'keyboard_code_conversion_x.cc', 397 'keyboard_code_conversion_x.cc',
399 'keyboard_code_conversion_x.h', 398 'keyboard_code_conversion_x.h',
400 'keyboard_codes_posix.h', 399 'keyboard_codes_posix.h',
401 ], 400 ],
402 }], 401 }],
402 ['libjpeg_turbo==1', {
403 'dependencies': [
404 '../third_party/libjpeg_turbo/libjpeg.gyp:libjpeg',
405 ],
406 }, {
407 'dependencies': [
408 '../third_party/libjpeg/libjpeg.gyp:libjpeg',
409 ],
410 }],
403 ], 411 ],
404 }, 412 },
405 ], 413 ],
406 'conditions': [ 414 'conditions': [
407 ['OS=="win"', { 415 ['OS=="win"', {
408 'targets': [ 416 'targets': [
409 { 417 {
410 'target_name': 'app_base_nacl_win64', 418 'target_name': 'app_base_nacl_win64',
411 'type': '<(library)', 419 'type': '<(library)',
412 'msvs_guid': '4987C6F9-B230-48E5-BF91-418EAE69AD90', 420 'msvs_guid': '4987C6F9-B230-48E5-BF91-418EAE69AD90',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 'configurations': { 453 'configurations': {
446 'Common_Base': { 454 'Common_Base': {
447 'msvs_target_platform': 'x64', 455 'msvs_target_platform': 'x64',
448 }, 456 },
449 }, 457 },
450 }, 458 },
451 ], 459 ],
452 }], 460 }],
453 ], 461 ],
454 } 462 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698