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 # These files lists are shared with the GN build. | 8 # These files lists are shared with the GN build. |
9 'chromeos_sources': [ | 9 'chromeos_sources': [ |
10 'accelerometer/accelerometer_reader.cc', | 10 'accelerometer/accelerometer_reader.cc', |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 'includes': [ | 495 'includes': [ |
496 'chromeos_tools.gypi' | 496 'chromeos_tools.gypi' |
497 ], | 497 ], |
498 'targets': [ | 498 'targets': [ |
499 { | 499 { |
500 # GN version: //chromeos | 500 # GN version: //chromeos |
501 'target_name': 'chromeos', | 501 'target_name': 'chromeos', |
502 'type': '<(component)', | 502 'type': '<(component)', |
503 'dependencies': [ | 503 'dependencies': [ |
504 '../base/base.gyp:base', | 504 '../base/base.gyp:base', |
| 505 '../base/base.gyp:base_i18n', |
505 '../base/base.gyp:base_prefs', | 506 '../base/base.gyp:base_prefs', |
506 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 507 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
507 '../build/linux/system.gyp:dbus', | 508 '../build/linux/system.gyp:dbus', |
508 '../build/linux/system.gyp:ssl', | 509 '../build/linux/system.gyp:ssl', |
509 '../components/components.gyp:cloud_policy_proto', | 510 '../components/components.gyp:cloud_policy_proto', |
510 '../components/components.gyp:onc_component', | 511 '../components/components.gyp:onc_component', |
511 '../crypto/crypto.gyp:crypto', | 512 '../crypto/crypto.gyp:crypto', |
512 '../dbus/dbus.gyp:dbus', | 513 '../dbus/dbus.gyp:dbus', |
513 '../google_apis/google_apis.gyp:google_apis', | 514 '../google_apis/google_apis.gyp:google_apis', |
514 '../net/net.gyp:net', | 515 '../net/net.gyp:net', |
515 '../third_party/icu/icu.gyp:icui18n', | 516 '../third_party/icu/icu.gyp:icui18n', |
516 '../third_party/libxml/libxml.gyp:libxml', | 517 '../third_party/libxml/libxml.gyp:libxml', |
517 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 518 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 519 '../ui/gfx/gfx.gyp:gfx_geometry', |
518 '../ui/accelerometer/ui_accelerometer.gyp:ui_accelerometer', | 520 '../ui/accelerometer/ui_accelerometer.gyp:ui_accelerometer', |
519 '../url/url.gyp:url_lib', | 521 '../url/url.gyp:url_lib', |
520 'cryptohome_proto', | 522 'cryptohome_proto', |
521 'ime/input_method.gyp:gencode', | 523 'ime/input_method.gyp:gencode', |
522 'power_manager_proto', | 524 'power_manager_proto', |
523 ], | 525 ], |
524 'defines': [ | 526 'defines': [ |
525 'CHROMEOS_IMPLEMENTATION', | 527 'CHROMEOS_IMPLEMENTATION', |
526 ], | 528 ], |
527 'sources': [ '<@(chromeos_sources)' ], | 529 'sources': [ '<@(chromeos_sources)' ], |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto', | 700 '../third_party/cros_system_api/dbus/cryptohome/signed_secret.proto', |
699 ], | 701 ], |
700 'variables': { | 702 'variables': { |
701 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', | 703 'proto_in_dir': '../third_party/cros_system_api/dbus/cryptohome', |
702 'proto_out_dir': 'chromeos/cryptohome', | 704 'proto_out_dir': 'chromeos/cryptohome', |
703 }, | 705 }, |
704 'includes': ['../build/protoc.gypi'], | 706 'includes': ['../build/protoc.gypi'], |
705 }, | 707 }, |
706 ], | 708 ], |
707 } | 709 } |
OLD | NEW |