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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'common', | 8 'target_name': 'common', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { | 10 'variables': { |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 'common/worker_thread_ticker.cc', | 481 'common/worker_thread_ticker.cc', |
482 'common/worker_thread_ticker.h', | 482 'common/worker_thread_ticker.h', |
483 '../components/nacl/common/nacl_process_type.h', | 483 '../components/nacl/common/nacl_process_type.h', |
484 ], | 484 ], |
485 'conditions': [ | 485 'conditions': [ |
486 ['enable_extensions==1', { | 486 ['enable_extensions==1', { |
487 'sources!': [ | 487 'sources!': [ |
488 'common/extensions/api/extension_api_stub.cc', | 488 'common/extensions/api/extension_api_stub.cc', |
489 ], | 489 ], |
490 'dependencies': [ | 490 'dependencies': [ |
| 491 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
491 '../device/usb/usb.gyp:device_usb', | 492 '../device/usb/usb.gyp:device_usb', |
492 ], | 493 ], |
493 }, { # enable_extensions == 0 | 494 }, { # enable_extensions == 0 |
494 'sources/': [ | 495 'sources/': [ |
495 ['exclude', '^common/extensions/api/'], | 496 ['exclude', '^common/extensions/api/'], |
496 ['include', 'common/extensions/api/extension_api_stub.cc'], | 497 ['include', 'common/extensions/api/extension_api_stub.cc'], |
497 ['include', 'common/extensions/api/extension_action/action_info.cc']
, | 498 ['include', 'common/extensions/api/extension_action/action_info.cc']
, |
498 ['include', 'common/extensions/api/extension_action/action_info.h'], | 499 ['include', 'common/extensions/api/extension_action/action_info.h'], |
499 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.cc'], | 500 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.cc'], |
500 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.h'], | 501 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.h'], |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
835 'common/metrics/proto/user_action_event.proto', | 836 'common/metrics/proto/user_action_event.proto', |
836 ], | 837 ], |
837 'variables': { | 838 'variables': { |
838 'proto_in_dir': 'common/metrics/proto', | 839 'proto_in_dir': 'common/metrics/proto', |
839 'proto_out_dir': 'chrome/common/metrics/proto', | 840 'proto_out_dir': 'chrome/common/metrics/proto', |
840 }, | 841 }, |
841 'includes': [ '../build/protoc.gypi' ], | 842 'includes': [ '../build/protoc.gypi' ], |
842 }, | 843 }, |
843 ], | 844 ], |
844 } | 845 } |
OLD | NEW |