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

Side by Side Diff: chromeos/chromeos.gyp

Issue 255823009: [WIP] ui/window: Master CL. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months 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) 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 'chromeos_tools.gypi' 10 'chromeos_tools.gypi'
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 'system/name_value_pairs_parser.h', 369 'system/name_value_pairs_parser.h',
370 'system/statistics_provider.cc', 370 'system/statistics_provider.cc',
371 'system/statistics_provider.h', 371 'system/statistics_provider.h',
372 'tpm_token_loader.cc', 372 'tpm_token_loader.cc',
373 'tpm_token_loader.h' 373 'tpm_token_loader.h'
374 ], 374 ],
375 'conditions': [ 375 'conditions': [
376 ['use_x11 == 1', { 376 ['use_x11 == 1', {
377 'dependencies': [ 377 'dependencies': [
378 '../build/linux/system.gyp:x11', 378 '../build/linux/system.gyp:x11',
379 '../ui/gfx/gfx.gyp:gfx_x11', 379 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
380 ], 380 ],
381 }, { 381 }, {
382 # use_x11 == 0 382 # use_x11 == 0
383 'sources!': [ 383 'sources!': [
384 'ime/keyboard_controller.cc', 384 'ime/keyboard_controller.cc',
385 'ime/ime_keyboard.h', 385 'ime/ime_keyboard.h',
386 ], 386 ],
387 }], 387 }],
388 ], 388 ],
389 }, 389 },
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 'conditions': [ 547 'conditions': [
548 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 548 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
549 [ '(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (use _allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { 549 [ '(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (use _allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
550 'dependencies': [ 550 'dependencies': [
551 '../base/allocator/allocator.gyp:allocator', 551 '../base/allocator/allocator.gyp:allocator',
552 ], 552 ],
553 }, 553 },
554 ], 554 ],
555 ['use_x11 == 1', { 555 ['use_x11 == 1', {
556 'dependencies': [ 556 'dependencies': [
557 '../ui/gfx/gfx.gyp:gfx_x11', 557 '../ui/gfx/x/gfx_x11.gyp:gfx_x11',
558 ], 558 ],
559 }] 559 }]
560 ], 560 ],
561 }, 561 },
562 { 562 {
563 # Protobuf compiler/generator for power-manager related protocol buffers. 563 # Protobuf compiler/generator for power-manager related protocol buffers.
564 'target_name': 'power_manager_proto', 564 'target_name': 'power_manager_proto',
565 'type': 'static_library', 565 'type': 'static_library',
566 'sources': [ 566 'sources': [
567 '../third_party/cros_system_api/dbus/power_manager/input_event.proto', 567 '../third_party/cros_system_api/dbus/power_manager/input_event.proto',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 ], 599 ],
600 'variables': { 600 'variables': {
601 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', 601 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome',
602 'proto_out_dir': 'chromeos/cryptohome', 602 'proto_out_dir': 'chromeos/cryptohome',
603 }, 603 },
604 'includes': ['../build/protoc.gypi'], 604 'includes': ['../build/protoc.gypi'],
605 }, 605 },
606 606
607 ], 607 ],
608 } 608 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698