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