| 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 'common/web_resource/web_resource_unpacker.h', | 428 'common/web_resource/web_resource_unpacker.h', |
| 429 'common/worker_thread_ticker.cc', | 429 'common/worker_thread_ticker.cc', |
| 430 'common/worker_thread_ticker.h', | 430 'common/worker_thread_ticker.h', |
| 431 ], | 431 ], |
| 432 'conditions': [ | 432 'conditions': [ |
| 433 ['enable_extensions==1', { | 433 ['enable_extensions==1', { |
| 434 'sources!': [ | 434 'sources!': [ |
| 435 'common/extensions/api/extension_api_stub.cc', | 435 'common/extensions/api/extension_api_stub.cc', |
| 436 ], | 436 ], |
| 437 'dependencies': [ | 437 'dependencies': [ |
| 438 '../device/device.gyp:device_usb', | 438 '../device/usb/usb.gyp:usb', |
| 439 ], | 439 ], |
| 440 }, { # enable_extensions == 0 | 440 }, { # enable_extensions == 0 |
| 441 'sources/': [ | 441 'sources/': [ |
| 442 ['exclude', '^common/extensions/api/'], | 442 ['exclude', '^common/extensions/api/'], |
| 443 ['include', 'common/extensions/api/extension_api_stub.cc'], | 443 ['include', 'common/extensions/api/extension_api_stub.cc'], |
| 444 ['include', 'common/extensions/api/extension_action/action_info.cc']
, | 444 ['include', 'common/extensions/api/extension_action/action_info.cc']
, |
| 445 ['include', 'common/extensions/api/extension_action/action_info.h'], | 445 ['include', 'common/extensions/api/extension_action/action_info.h'], |
| 446 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.cc'], | 446 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.cc'], |
| 447 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.h'], | 447 ['include', 'common/extensions/api/extension_action/browser_action_h
andler.h'], |
| 448 ['include', 'common/extensions/api/extension_action/page_action_hand
ler.cc'], | 448 ['include', 'common/extensions/api/extension_action/page_action_hand
ler.cc'], |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 752 'common/metrics/proto/user_action_event.proto', | 752 'common/metrics/proto/user_action_event.proto', |
| 753 ], | 753 ], |
| 754 'variables': { | 754 'variables': { |
| 755 'proto_in_dir': 'common/metrics/proto', | 755 'proto_in_dir': 'common/metrics/proto', |
| 756 'proto_out_dir': 'chrome/common/metrics/proto', | 756 'proto_out_dir': 'chrome/common/metrics/proto', |
| 757 }, | 757 }, |
| 758 'includes': [ '../build/protoc.gypi' ], | 758 'includes': [ '../build/protoc.gypi' ], |
| 759 }, | 759 }, |
| 760 ], | 760 ], |
| 761 } | 761 } |
| OLD | NEW |