Globally replace <(library) with static_library

We provided <(library) as a variable to support a peculiar
build configuration on Linux.  We no longer support that build
configuration, so we can simplify this code to no longer use
a variable.

Review URL: http://codereview.chromium.org/7051014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86004 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/net.gyp b/net/net.gyp
index 119d1c1..2ea9a94 100644
--- a/net/net.gyp
+++ b/net/net.gyp
@@ -9,7 +9,7 @@
   'targets': [
     {
       'target_name': 'net',
-      'type': '<(library)',
+      'type': 'static_library',
       'dependencies': [
         '../base/base.gyp:base',
         '../base/base.gyp:base_i18n',
@@ -1127,7 +1127,7 @@
     },
     {
       'target_name': 'net_test_support',
-      'type': '<(library)',
+      'type': 'static_library',
       'dependencies': [
         'net',
         '../base/base.gyp:base',
@@ -1250,7 +1250,7 @@
     },
     {
       'target_name': 'http_server',
-      'type': '<(library)',
+      'type': 'static_library',
       'dependencies': [
         'net',
         '../base/base.gyp:base',
@@ -1360,7 +1360,7 @@
          },
          {
            'target_name': 'curvecp',
-           'type': '<(library)',
+           'type': 'static_library',
            'dependencies': [
              '../base/base.gyp:base',
              'net.gyp:net',